Merge pull request #121537 from Mindavi/graphene/fix-compilation
graphene: fix build by allowing newer versions of aniso8601
This commit is contained in:
commit
5f59141ba8
@ -11,6 +11,7 @@
|
|||||||
, pytest-mock
|
, pytest-mock
|
||||||
, pytz
|
, pytz
|
||||||
, snapshottest
|
, snapshottest
|
||||||
|
, fetchpatch
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -24,6 +25,13 @@ buildPythonPackage rec {
|
|||||||
sha256 = "sha256-bVCCLPnV5F8PqLMg3GwcpwpGldrxsU+WryL6gj6y338=";
|
sha256 = "sha256-bVCCLPnV5F8PqLMg3GwcpwpGldrxsU+WryL6gj6y338=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Allow later aniso8601 releases
|
||||||
|
# https://github.com/graphql-python/graphene/pull/1331
|
||||||
|
patches = [ (fetchpatch {
|
||||||
|
url = "https://github.com/graphql-python/graphene/commit/26b16f75b125e35eeb2274b7be503ec29f2e8a45.patch";
|
||||||
|
sha256 = "qm96pNOoxPieEy1CFZpa2Mx010pY3QU/vRyuL0qO3Tk=";
|
||||||
|
}) ];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
aniso8601
|
aniso8601
|
||||||
graphql-core
|
graphql-core
|
||||||
|
Loading…
Reference in New Issue
Block a user