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