e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
30 lines
653 B
Nix
30 lines
653 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope-interface
|
|
, zope-exceptions
|
|
, zope-testing
|
|
, six
|
|
}:
|
|
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope.testrunner";
|
|
version = "5.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-1r1y9E6jLKpBW5bP4UFSsnhjF67xzW9IqCe2Le8Fj9Q=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zope-interface zope-exceptions zope-testing six ];
|
|
|
|
doCheck = false; # custom test modifies sys.path
|
|
|
|
meta = with lib; {
|
|
description = "A flexible test runner with layer support";
|
|
homepage = "https://pypi.python.org/pypi/zope.testrunner";
|
|
license = licenses.zpl20;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|