depot/third_party/nixpkgs/pkgs/development/python-modules/zope_testrunner/default.nix
Default email 5083ee08a2 Project import generated by Copybara.
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
2022-09-30 06:47:45 -05:00

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