linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / django_modelcluster / default.nix
blobfdd4bd03b7057ae4eec01af88f54e7299906e41b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytz
5 , pythonOlder
6 , six
7 }:
9 buildPythonPackage rec {
10   pname = "django-modelcluster";
11   version = "5.1";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "783d177f7bf5c8f30fe365c347b9a032920de371fe1c63d955d7b283684d4c08";
16   };
18   disabled = pythonOlder "3.5";
20   doCheck = false;
22   propagatedBuildInputs = [ pytz six ];
24   meta = with lib; {
25     description = "Django extension to allow working with 'clusters' of models as a single unit, independently of the database";
26     homepage = "https://github.com/torchbox/django-modelcluster/";
27     license = licenses.bsd2;
28     maintainers = with maintainers; [ desiderius ];
29   };