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-17 11:10:58 +02:00
|
|
|
version = "5.0";
|
2017-07-14 05:04:33 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-17 11:10:58 +02:00
|
|
|
sha256 = "0d8a27e214033b6f1e557556e61bff9568ae95676dfcc8a032483fdeeee792c3";
|
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";
|
2017-11-10 22:13:27 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|