Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 28 lines 603 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 = "8.0.2"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "082b03aebe81d0bdcc44a917a795ae60d3add2c2abbee11e7c335fb13d5e7ca7"; 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}