mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 16:34:15 +03:00
pythonPackages.django-modelcluster: init at 0.6.2
Django extension to allow working with 'clusters' of models as a single unit, independently of the database.
This commit is contained in:
parent
a8e749d502
commit
50e35968dd
@ -5482,6 +5482,25 @@ let
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
django_modelcluster = buildPythonPackage rec {
|
||||||
|
name = "django-modelcluster-${version}";
|
||||||
|
version = "0.6.2";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/d/django-modelcluster/django-modelcluster-${version}.tar.gz";
|
||||||
|
sha256 = "1plsdi44dvsj2sfx79lsrccjfg0ymajcsf5n0mln4cwd4qi5mwpx";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self; [ pytz six ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Django extension to allow working with 'clusters' of models as a single unit, independently of the database";
|
||||||
|
homepage = https://github.com/torchbox/django-modelcluster/;
|
||||||
|
license = licenses.bsd2;
|
||||||
|
maintainers = with maintainers; [ desiderius ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
djangorestframework = buildPythonPackage rec {
|
djangorestframework = buildPythonPackage rec {
|
||||||
name = "djangorestframework-${version}";
|
name = "djangorestframework-${version}";
|
||||||
version = "3.2.3";
|
version = "3.2.3";
|
||||||
|
Loading…
Reference in New Issue
Block a user