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