1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pytz
5, six
6}:
7
8buildPythonPackage rec {
9 pname = "django-modelcluster";
10 version = "4.3";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "407845f0c16b6f17547a65864657377446e0b3aa8a629b032bf5053f87f82fe9";
15 };
16
17 doCheck = false;
18
19 propagatedBuildInputs = [ pytz six ];
20
21 meta = with stdenv.lib; {
22 description = "Django extension to allow working with 'clusters' of models as a single unit, independently of the database";
23 homepage = https://github.com/torchbox/django-modelcluster/;
24 license = licenses.bsd2;
25 maintainers = with maintainers; [ desiderius ];
26 };
27
28}