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

Merge pull request #229283 from fabaff/django-model-utils-bump

python311Packages.django-model-utils: 4.2.0 -> 4.3.1
parents fe2bd7e2 a7512939
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -12,14 +12,16 @@

buildPythonPackage rec {
  pname = "django-model-utils";
  version = "4.2.0";
  version = "4.3.1";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "jazzband";
    repo = "django-model-utils";
    rev = version;
    hash = "sha256-TLqvpP/ZaGGFdqnN+UHbhXv1K1YVYTYBkCiWCjYrFh8=";
    rev = "refs/tags/${version}";
    hash = "sha256-p3/JO6wNwZPYX7MIgMj/0caHt5s+uL51Sxa28/VITxo=";
  };

  SETUPTOOLS_SCM_PRETEND_VERSION = version;
@@ -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 ];
  };