pythonPackages.django_extensions : init at 1.8.1 (#27378)

* add django-extensions 1.8.1

* enable testing

* use propagatedBuildInputs
This commit is contained in:
Wisut Hantanong 2017-08-14 03:58:35 +07:00 committed by Frederik Rietdijk
parent 9ed9ede922
commit 5dc63e69db
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, buildPythonPackage, fetchFromGitHub
, vobject, mock, tox, pytestcov, pytest-django, pytest, shortuuid
, django, six
}:
buildPythonPackage rec {
pname = "django-extensions";
version = "1.8.1";
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "${pname}";
repo = "${pname}";
rev = "${version}";
sha256 = "08rd9zswvjb9dixzyd3p3l3hw3wwhqkgyjvid65niybzjl1xdb5h";
};
buildInputs = [ vobject mock tox pytestcov pytest-django pytest shortuuid ];
propagatedBuildInputs = [ django six ];
meta = with stdenv.lib; {
description = "A collection of custom extensions for the Django Framework";
homepage = https://github.com/django-extensions/django-extensions;
licenses = [ licenses.mit ];
};
}

View File

@ -8968,6 +8968,8 @@ in {
};
};
django_extensions = callPackage ../development/python-modules/django-extensions { };
django_guardian = callPackage ../development/python-modules/django_guardian.nix { };
django_polymorphic = callPackage ../development/python-modules/django-polymorphic { };