5083ee08a2
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
30 lines
657 B
Nix
30 lines
657 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope_interface
|
|
, zope_exceptions
|
|
, zope_testing
|
|
, six
|
|
}:
|
|
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope.testrunner";
|
|
version = "5.5.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-ahDTg1RZ7tO8hDHyGq9gS8dU/4OSopeXzSDlqUHBQ74=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|