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