bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
36 lines
714 B
Nix
36 lines
714 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
zope-interface,
|
|
zope-exceptions,
|
|
zope-testing,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope.testrunner";
|
|
version = "6.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-C4Wfx01vK2xd2K353uTsdAX3PykOyrJXCsY2+DYSKMg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
zope-interface
|
|
zope-exceptions
|
|
zope-testing
|
|
six
|
|
];
|
|
|
|
doCheck = false; # custom test modifies sys.path
|
|
|
|
meta = with lib; {
|
|
description = "Flexible test runner with layer support";
|
|
mainProgram = "zope-testrunner";
|
|
homepage = "https://pypi.python.org/pypi/zope.testrunner";
|
|
license = licenses.zpl20;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|