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 = "5.0.1";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-6HzQ2NZmVzza8TOBare5vuyAGmSoZZXBnLX+mS7z1kk=";
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}