pythonPackages.django-discover-runner: init at 1.0

This commit is contained in:
Chris Ostrouchov 2018-10-25 15:22:48 -04:00 committed by Frederik Rietdijk
parent 758f4ce2b8
commit 923acba10e
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, django
}:
buildPythonPackage rec {
version = "1.0";
pname = "django-discover-runner";
src = fetchPypi {
inherit pname version;
sha256 = "0ba91fe722c256bcbfdeb36fac7eac0f27e5bfda55d98c4c1cf9ab62b5b084fe";
};
propagatedBuildInputs = [ django ];
# tests not included with release
doCheck = false;
meta = with stdenv.lib; {
homepage = http://github.com/jezdez/django-discover-runner;
description = "A Django test runner based on unittest2's test discovery";
license = licenses.bsd0;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -2055,6 +2055,8 @@ in {
django_contrib_comments = callPackage ../development/python-modules/django_contrib_comments { };
django-discover-runner = callPackage ../development/python-modules/django-discover-runner { };
django_environ = callPackage ../development/python-modules/django_environ { };
django_evolution = callPackage ../development/python-modules/django_evolution { };