3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/zope_testrunner/default.nix
2022-09-19 10:37:47 +02:00

31 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 ];
};
}