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.3";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "39bc23bbb59b765702090ad61fe579f8bd9fe1f005f4dd1c2988a5bd1a71faf0";
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}