13 buildPythonPackage rec {
14 pname = "django-model-utils";
16 format = "setuptools";
18 disabled = pythonOlder "3.6";
20 src = fetchFromGitHub {
22 repo = "django-model-utils";
23 rev = "refs/tags/${version}";
24 hash = "sha256-p3/JO6wNwZPYX7MIgMj/0caHt5s+uL51Sxa28/VITxo=";
27 SETUPTOOLS_SCM_PRETEND_VERSION = version;
33 propagatedBuildInputs = [
37 # requires postgres database
47 pythonImportsCheck = [ "model_utils" ];
50 homepage = "https://github.com/jazzband/django-model-utils";
51 description = "Django model mixins and utilities";
52 changelog = "https://github.com/jazzband/django-model-utils/blob/${version}/CHANGES.rst";
53 license = licenses.bsd3;
54 maintainers = with maintainers; [ ];