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 = "4.8.1"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "039z9q5i1r6fqzlm224nmaxn896k4a9sb1237dv406ncdldd7jaz"; 18 }; 19 20 patches = [ ./test-selection.patch ]; 21 22 propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ]; 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}