summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-discover-runner/default.nix
blob: 8d07148ce182495e73a58afaf2192ccd042ed339 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, 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 lib; {
    homepage = "https://github.com/jezdez/django-discover-runner";
    description = "A Django test runner based on unittest2's test discovery";
    license = licenses.bsd0;
    maintainers = [ maintainers.costrouc ];
  };
}