2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-10-29 10:50:40 -04:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPyPy
|
|
|
|
, zope_interface
|
|
|
|
, zope_exceptions
|
|
|
|
, zope_location
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.testing";
|
2021-03-24 10:28:33 +01:00
|
|
|
version = "4.9";
|
2018-10-29 10:50:40 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 10:28:33 +01:00
|
|
|
sha256 = "475cb847a7af9d547313ee93f5d0b8800bf627e6d0d9a51d11967984083cb54e";
|
2018-10-29 10:50:40 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = !isPyPy;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ zope_interface zope_exceptions zope_location ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-10-29 10:50:40 -04:00
|
|
|
description = "Zope testing helpers";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://pypi.python.org/pypi/zope.testing";
|
2018-10-29 10:50:40 -04:00
|
|
|
license = licenses.zpl20;
|
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|