Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / zope-testrunner / default.nix
blobaa06e73442335b27d49ac6fe7f59a0e62f5d10f5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , zope-interface
5 , zope-exceptions
6 , zope-testing
7 , six
8 }:
11 buildPythonPackage rec {
12   pname = "zope.testrunner";
13   version = "6.4";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-C4Wfx01vK2xd2K353uTsdAX3PykOyrJXCsY2+DYSKMg=";
18   };
20   propagatedBuildInputs = [ zope-interface zope-exceptions zope-testing six ];
22   doCheck = false; # custom test modifies sys.path
24   meta = with lib; {
25     description = "A flexible test runner with layer support";
26     mainProgram = "zope-testrunner";
27     homepage = "https://pypi.python.org/pypi/zope.testrunner";
28     license = licenses.zpl20;
29     maintainers = [ maintainers.goibhniu ];
30   };