python310Packages.graphene-django: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-01-25 10:05:22 +01:00
parent 4ef98ebcc1
commit df8af6cd1a

View File

@ -22,6 +22,7 @@ buildPythonPackage rec {
pname = "graphene-django";
version = "3.0.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
@ -61,6 +62,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Integrate GraphQL into your Django project";
homepage = "https://github.com/graphql-python/graphene-django";
changelog = "https://github.com/graphql-python/graphene-django/releases/tag/v{version}";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};