Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 28 lines 601 B view raw
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.3"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "160f130f641578fbede2e47686f1b58179efa9ff98ccdd1ad198b5d0c7e02474"; 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}