Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 30 lines 676 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, zope_interface 5, zope_exceptions 6, zope_testing 7, six 8}: 9 10 11buildPythonPackage rec { 12 pname = "zope.testrunner"; 13 version = "5.1"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "354a65f6c6fe6c0584e2fcf06d7318e90dc7f7de1b7008d8913733e299317870"; 18 }; 19 20 propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ]; 21 22 doCheck = false; # custom test modifies sys.path 23 24 meta = with stdenv.lib; { 25 description = "A flexible test runner with layer support"; 26 homepage = https://pypi.python.org/pypi/zope.testrunner; 27 license = licenses.zpl20; 28 maintainers = [ maintainers.goibhniu ]; 29 }; 30}