Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPyPy 5, zope_interface 6, zope_exceptions 7, zope_location 8}: 9 10buildPythonPackage rec { 11 pname = "zope.testing"; 12 version = "4.7"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "d66be8d1de37e8536ca58a1d9f4d89a68c9cc75cc0e788a175c8a20ae26003ea"; 17 }; 18 19 doCheck = !isPyPy; 20 21 propagatedBuildInputs = [ zope_interface zope_exceptions zope_location ]; 22 23 meta = with stdenv.lib; { 24 description = "Zope testing helpers"; 25 homepage = "http://pypi.python.org/pypi/zope.testing"; 26 license = licenses.zpl20; 27 maintainers = with maintainers; [ goibhniu ]; 28 }; 29 30}