1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, fetchpatch 5, zope_interface 6, zope_exceptions 7, zope_testing 8, six 9}: 10 11 12buildPythonPackage rec { 13 pname = "zope.testrunner"; 14 version = "4.8.1"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "039z9q5i1r6fqzlm224nmaxn896k4a9sb1237dv406ncdldd7jaz"; 19 }; 20 21 patches = [ ./test-selection.patch ]; 22 23 propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ]; 24 25 meta = with stdenv.lib; { 26 description = "A flexible test runner with layer support"; 27 homepage = https://pypi.python.org/pypi/zope.testrunner; 28 license = licenses.zpl20; 29 maintainers = [ maintainers.goibhniu ]; 30 }; 31}