a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
78 lines
1.7 KiB
Nix
78 lines
1.7 KiB
Nix
{ 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.0.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "graphql-python";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-wSZm0hRukBmvrmU3bsqFuZSQRXBwwye9J4ojuSz1uzE=";
|
|
};
|
|
|
|
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") [
|
|
# Pèython 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"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|