1{ lib
2, buildPythonPackage
3, fetchPypi
4, zope_interface
5, zope_exceptions
6, zope_testing
7, six
8}:
9
10
11buildPythonPackage rec {
12 pname = "zope.testrunner";
13 version = "5.6";
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-1r1y9E6jLKpBW5bP4UFSsnhjF67xzW9IqCe2Le8Fj9Q=";
18 };
19
20 propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ];
21
22 doCheck = false; # custom test modifies sys.path
23
24 meta = with lib; {
25 description = "A flexible test runner with layer support";
26 homepage = "https://pypi.python.org/pypi/zope.testrunner";
27 license = licenses.zpl20;
28 maintainers = [ maintainers.goibhniu ];
29 };
30}