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