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