ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / django-discover-runner / default.nix
blob8d07148ce182495e73a58afaf2192ccd042ed339
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , django
5 }:
7 buildPythonPackage rec {
8   version = "1.0";
9   pname = "django-discover-runner";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0ba91fe722c256bcbfdeb36fac7eac0f27e5bfda55d98c4c1cf9ab62b5b084fe";
14   };
16   propagatedBuildInputs = [ django ];
18   # tests not included with release
19   doCheck = false;
21   meta = with lib; {
22     homepage = "https://github.com/jezdez/django-discover-runner";
23     description = "A Django test runner based on unittest2's test discovery";
24     license = licenses.bsd0;
25     maintainers = [ maintainers.costrouc ];
26   };