1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-27 08:01:14 +00:00

python3Packages.graphene-django: 3.0.0b7 -> unstable-2021-06-11

Prevents test breakage with django_3.
This commit is contained in:
Martin Weinelt 2021-10-12 01:17:00 +02:00
parent 3ef1fefd0a
commit 704aec5b4a
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -19,15 +19,15 @@
buildPythonPackage rec {
pname = "graphene-django";
version = "3.0.0b7";
version = "unstable-2021-06-11";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "graphql-python";
repo = pname;
rev = "v${version}";
sha256 = "sha256-uPc9HNcciQpCcHLYespK8ICny5jOQaliFMyd2Yt6/as=";
rev = "e7f7d8da07ba1020f9916153f17e97b0ec037712";
sha256 = "0b33q1im90ahp3gzy9wx5amfzy6q57ydjpy5rn988gh81hbyqaxv";
};
postPatch = ''
@ -59,7 +59,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Integrate GraphQL into your Django project";
homepage = "https://github.com/graphql-python/graphene-django";
licenses = licenses.mit;
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}