Unverified Commit a7512939 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parent 9fb69343
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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 ];
  };