python311Packages.django-model-utils: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-05-01 14:56:37 +02:00 committed by GitHub
parent 9fb69343d1
commit a7512939c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,12 +13,14 @@
buildPythonPackage rec {
pname = "django-model-utils";
version = "4.3.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "jazzband";
repo = "django-model-utils";
rev = version;
rev = "refs/tags/${version}";
hash = "sha256-p3/JO6wNwZPYX7MIgMj/0caHt5s+uL51Sxa28/VITxo=";
};
@ -47,6 +49,7 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://github.com/jazzband/django-model-utils";
description = "Django model mixins and utilities";
changelog = "https://github.com/jazzband/django-model-utils/blob/${version}/CHANGES.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ SuperSandro2000 ];
};