evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / django-model-utils / default.nix
blob8ddb17d2b35064ff70d98b8106b3b82b45d46c2c
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   django,
6   pythonOlder,
7   setuptools-scm,
8 }:
10 buildPythonPackage rec {
11   pname = "django-model-utils";
12   version = "5.0.0";
13   pyproject = true;
15   disabled = pythonOlder "3.8";
17   src = fetchFromGitHub {
18     owner = "jazzband";
19     repo = "django-model-utils";
20     rev = "refs/tags/${version}";
21     hash = "sha256-iRtTYXsgD8NYG3k9ZWAr2Nwazo3HUa6RgdbMeDxc7NI=";
22   };
24   build-system = [ setuptools-scm ];
26   dependencies = [ django ];
28   # Test requires postgres database
29   doCheck = false;
31   pythonImportsCheck = [ "model_utils" ];
33   meta = with lib; {
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;
38     maintainers = [ ];
39   };