2017-07-13 20:04:33 -07:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zope_interface
|
|
|
|
, zope_exceptions
|
|
|
|
, zope_testing
|
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.testrunner";
|
2017-11-27 17:54:56 -08:00
|
|
|
version = "4.8.1";
|
2017-07-13 20:04:33 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-11-27 17:54:56 -08:00
|
|
|
sha256 = "039z9q5i1r6fqzlm224nmaxn896k4a9sb1237dv406ncdldd7jaz";
|
2017-07-13 20:04:33 -07:00
|
|
|
};
|
|
|
|
|
2017-11-27 17:54:56 -08:00
|
|
|
patches = [ ./test-selection.patch ];
|
|
|
|
|
2017-08-08 21:18:44 -07:00
|
|
|
propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ];
|
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 ];
|
|
|
|
};
|
|
|
|
}
|