mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
pythonPackages.django-discover-runner: init at 1.0
This commit is contained in:
parent
758f4ce2b8
commit
923acba10e
@ -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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user