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