2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2017-07-14 04:04:33 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zope_interface
|
|
|
|
, zope_exceptions
|
|
|
|
, zope_testing
|
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.testrunner";
|
2020-08-16 18:31:21 +01:00
|
|
|
version = "5.2";
|
2017-07-14 04:04:33 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 18:31:21 +01:00
|
|
|
sha256 = "873d6017abadc213992a0c38c786ed020341b6e0fe78d14bc2a684cf5a70de4b";
|
2017-07-14 04:04:33 +01:00
|
|
|
};
|
|
|
|
|
2017-08-09 05:18:44 +01:00
|
|
|
propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ];
|
2017-07-14 04:04:33 +01:00
|
|
|
|
2019-10-17 11:35:51 +01:00
|
|
|
doCheck = false; # custom test modifies sys.path
|
2019-04-22 06:15:23 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-07-14 04:04:33 +01:00
|
|
|
description = "A flexible test runner with layer support";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pypi.python.org/pypi/zope.testrunner";
|
2017-08-06 12:49:18 +01:00
|
|
|
license = licenses.zpl20;
|
2017-07-14 04:04:33 +01:00
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
|
|
|
}
|