Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 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.1"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "98a6e9ce8df1fdd33876e2d8c3ca3d8291612c20bd7e0811dac83b6ce10e984b"; 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}