f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
36 lines
693 B
Nix
36 lines
693 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 = [ ];
|
|
};
|
|
}
|