1{ lib 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.3.0"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "39a5ba631830703ea011383447135063db6d182794487dda9b8c1f515bb70b0f"; 18 }; 19 20 propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ]; 21 22 doCheck = false; # custom test modifies sys.path 23 24 meta = with 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}