Merge pull request #175830 from SuperSandro2000/python310Packages.graphene
This commit is contained in:
commit
8109bda325
@ -2,6 +2,7 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
|
|
||||||
, graphene
|
, graphene
|
||||||
, graphql-core
|
, graphql-core
|
||||||
@ -32,6 +33,11 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./graphene-3_2_0.patch
|
./graphene-3_2_0.patch
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/graphql-python/graphene-django/commit/ca555293a4334c26cf9a390dd1e3d0bd4c819a17.patch";
|
||||||
|
excludes = [ "setup.py" ];
|
||||||
|
sha256 = "sha256-RxG1MRhmpBKnHhSg4SV+DjZ3uA0nl9oUeei56xjtUpw=";
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, aniso8601
|
, aniso8601
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchpatch
|
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, graphql-core
|
, graphql-core
|
||||||
, graphql-relay
|
, graphql-relay
|
||||||
@ -18,32 +17,18 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "graphene";
|
pname = "graphene";
|
||||||
version = "3.0.0";
|
version = "3.1.0";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "graphql-python";
|
owner = "graphql-python";
|
||||||
repo = "graphene";
|
repo = "graphene";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0qgp3nl6afyz6y27bw175hyqppx75pp1vqwl7nvlpwvgwyyc2mnl";
|
sha256 = "sha256-fKvaor9tOsJWXFMAH0/iDQi5NYJPec2sJevbQsKhQQ4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
# Fix graphql-core 3.2.0 support
|
|
||||||
(fetchpatch {
|
|
||||||
# https://github.com/graphql-python/graphene/pull/1378
|
|
||||||
url = "https://github.com/graphql-python/graphene/commit/989970f89341ebb949962d13dcabca8a6ccddad4.patch";
|
|
||||||
hash = "sha256-qRxWTqv5XQN7uFjL2uv9NjTvSLi76/MyFSa4jpkb8to=";
|
|
||||||
})
|
|
||||||
(fetchpatch {
|
|
||||||
# https://github.com/graphql-python/graphene/pull/1417
|
|
||||||
url = "https://github.com/graphql-python/graphene/commit/4e0e18d1682b7759bdf16499c573f675c7fb51cb.patch";
|
|
||||||
hash = "sha256-icdTGDabJouQ3hVpcMkkeabNwdoDxdVVAboTOWFbO94=";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
aniso8601
|
aniso8601
|
||||||
graphql-core
|
graphql-core
|
||||||
@ -64,17 +49,6 @@ buildPythonPackage rec {
|
|||||||
"--benchmark-disable"
|
"--benchmark-disable"
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTests = [
|
|
||||||
# Expects different Exeception classes, but receives none of them
|
|
||||||
# https://github.com/graphql-python/graphene/issues/1346
|
|
||||||
"test_unexpected_error"
|
|
||||||
# https://github.com/graphql-python/graphene/pull/1417#issuecomment-1102492138
|
|
||||||
"test_example_end_to_end"
|
|
||||||
] ++ lib.optionals (pythonAtLeast "3.10") [
|
|
||||||
"test_objecttype_as_container_extra_args"
|
|
||||||
"test_objecttype_as_container_invalid_kwargs"
|
|
||||||
];
|
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
"graphene"
|
"graphene"
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user