2017-07-14 05:04:33 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zope_interface
|
|
|
|
, zope_exceptions
|
|
|
|
, zope_testing
|
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.testrunner";
|
2019-01-17 16:13:09 +01:00
|
|
|
version = "4.9.2";
|
2017-07-14 05:04:33 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-01-17 16:13:09 +01:00
|
|
|
sha256 = "f2aa89531db6b7546e46be9d6113ac835a075f4dcb26e32c7276f4f30d4b14a5";
|
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
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|