lol

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

Prevents test breakage with django_3.

+4 -4
+4 -4
pkgs/development/python-modules/graphene-django/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "graphene-django"; 22 - version = "3.0.0b7"; 22 + version = "unstable-2021-06-11"; 23 23 format = "setuptools"; 24 24 disabled = pythonOlder "3.6"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "graphql-python"; 28 28 repo = pname; 29 - rev = "v${version}"; 30 - sha256 = "sha256-uPc9HNcciQpCcHLYespK8ICny5jOQaliFMyd2Yt6/as="; 29 + rev = "e7f7d8da07ba1020f9916153f17e97b0ec037712"; 30 + sha256 = "0b33q1im90ahp3gzy9wx5amfzy6q57ydjpy5rn988gh81hbyqaxv"; 31 31 }; 32 32 33 33 postPatch = '' ··· 59 59 meta = with lib; { 60 60 description = "Integrate GraphQL into your Django project"; 61 61 homepage = "https://github.com/graphql-python/graphene-django"; 62 - licenses = licenses.mit; 62 + license = licenses.mit; 63 63 maintainers = with maintainers; [ hexa ]; 64 64 }; 65 65 }