1{ lib 2, buildPythonPackage 3, fetchPypi 4, zope_testing 5, setuptools 6}: 7 8buildPythonPackage rec { 9 pname = "plone.testing"; 10 version = "6.0.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "8aa7c45237b883ea1d1c28fb465322f69310b084b9f9b6a79af64401b649dc4c"; 15 }; 16 17 propagatedBuildInputs = [ setuptools zope_testing ]; 18 19 # Huge amount of testing dependencies (including Zope2) 20 doCheck = false; 21 22 meta = { 23 description = "Testing infrastructure for Zope and Plone projects"; 24 homepage = https://github.com/plone/plone.testing; 25 license = lib.licenses.bsd3; 26 }; 27}