Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / iocapture / default.nix
blobb47c18874a922e25bb89b86c97b1994a307fa594
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , flexmock
5 , pytest
6 , pytest-cov
7 , six
8 }:
10 buildPythonPackage rec {
11   pname = "iocapture";
12   version = "0.1.2";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "86670e1808bcdcd4f70112f43da72ae766f04cd8311d1071ce6e0e0a72e37ee8";
18   };
20   nativeCheckInputs = [
21     flexmock
22     pytest
23     pytest-cov
24     six
25   ];
27   # No tests in archive
28   doCheck = false;
30   meta = with lib; {
31     description = "Capture stdout, stderr easily.";
32     homepage = "https://github.com/oinume/iocapture";
33     license = licenses.mit;
34   };