2017-07-14 04:04:33 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zope_interface
|
|
|
|
, zope_exceptions
|
|
|
|
, zope_testing
|
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.testrunner";
|
2017-11-28 01:54:56 +00:00
|
|
|
version = "4.8.1";
|
2017-07-14 04:04:33 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-11-28 01:54:56 +00:00
|
|
|
sha256 = "039z9q5i1r6fqzlm224nmaxn896k4a9sb1237dv406ncdldd7jaz";
|
2017-07-14 04:04:33 +01:00
|
|
|
};
|
|
|
|
|
2017-11-28 01:54:56 +00:00
|
|
|
patches = [ ./test-selection.patch ];
|
|
|
|
|
2017-08-09 05:18:44 +01:00
|
|
|
propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ];
|
2017-07-14 04:04:33 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A flexible test runner with layer support";
|
2017-11-10 21:13:27 +00: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 ];
|
|
|
|
};
|
|
|
|
}
|