10 buildPythonPackage rec {
11 pname = "django-model-utils";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
19 repo = "django-model-utils";
20 rev = "refs/tags/${version}";
21 hash = "sha256-iRtTYXsgD8NYG3k9ZWAr2Nwazo3HUa6RgdbMeDxc7NI=";
24 build-system = [ setuptools-scm ];
26 dependencies = [ django ];
28 # Test requires postgres database
31 pythonImportsCheck = [ "model_utils" ];
34 homepage = "https://github.com/jazzband/django-model-utils";
35 description = "Django model mixins and utilities";
36 changelog = "https://github.com/jazzband/django-model-utils/blob/${version}/CHANGES.rst";
37 license = licenses.bsd3;