504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
82 lines
1.8 KiB
Nix
82 lines
1.8 KiB
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, pythonAtLeast
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
|
|
, graphene
|
|
, graphql-core
|
|
, django
|
|
, djangorestframework
|
|
, promise
|
|
, text-unidecode
|
|
|
|
, django-filter
|
|
, mock
|
|
, py
|
|
, pytest-django
|
|
, pytest-random-order
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "graphene-django";
|
|
version = "3.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "graphql-python";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-SOLY3NogovwQ5gr2gnvOcROWpbk9p134wI2f9FKr+5M=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace '"pytest-runner"' ""
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
djangorestframework
|
|
graphene
|
|
graphql-core
|
|
django
|
|
promise
|
|
text-unidecode
|
|
];
|
|
|
|
preCheck = ''
|
|
export DJANGO_SETTINGS_MODULE=examples.django_test_settings
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
django-filter
|
|
mock
|
|
py
|
|
pytest-django
|
|
pytest-random-order
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = lib.optionals (pythonAtLeast "3.11") [
|
|
# Python 3.11 support, https://github.com/graphql-python/graphene-django/pull/1365
|
|
"test_django_objecttype_convert_choices_enum_naming_collisions"
|
|
"test_django_objecttype_choices_custom_enum_name"
|
|
"test_django_objecttype_convert_choices_enum_list"
|
|
"test_schema_representation"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
# this test touches files in the "/" directory and fails in darwin sandbox
|
|
"test_should_filepath_convert_string"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Integrate GraphQL into your Django project";
|
|
homepage = "https://github.com/graphql-python/graphene-django";
|
|
changelog = "https://github.com/graphql-python/graphene-django/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|