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

python311Packages.django-model-utils: 4.2.0 -> 4.3.1
This commit is contained in:
Fabian Affolter
2023-05-01 21:15:38 +02:00
committed by GitHub
@@ -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 ];
};