1{ lib
2, buildPythonPackage
3, fetchPypi
4, isPyPy
5, zope_interface
6, zope_exceptions
7, zope_location
8}:
9
10buildPythonPackage rec {
11 pname = "zope.testing";
12 version = "4.10";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "sha256-O25ZBsrd0UjCP+lY5qrj+tyKCKilP3R9l5HC2BNe5W4=";
17 };
18
19 doCheck = !isPyPy;
20
21 propagatedBuildInputs = [ zope_interface zope_exceptions zope_location ];
22
23 meta = with lib; {
24 description = "Zope testing helpers";
25 homepage = "http://pypi.python.org/pypi/zope.testing";
26 license = licenses.zpl20;
27 maintainers = with maintainers; [ goibhniu ];
28 };
29
30}