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