1{ lib 2, buildPythonPackage 3, fetchPypi 4, django 5}: 6 7buildPythonPackage rec { 8 version = "1.0"; 9 pname = "django-discover-runner"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "0ba91fe722c256bcbfdeb36fac7eac0f27e5bfda55d98c4c1cf9ab62b5b084fe"; 14 }; 15 16 propagatedBuildInputs = [ django ]; 17 18 # tests not included with release 19 doCheck = false; 20 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 }; 27}