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