pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / iocapture / default.nix
bloba36a01eeeead91f2730a9d8f9cf99f6edfac227a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   flexmock,
6   pytest,
7   pytest-cov,
8   six,
9 }:
11 buildPythonPackage rec {
12   pname = "iocapture";
13   version = "0.1.2";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "86670e1808bcdcd4f70112f43da72ae766f04cd8311d1071ce6e0e0a72e37ee8";
19   };
21   nativeCheckInputs = [
22     flexmock
23     pytest
24     pytest-cov
25     six
26   ];
28   # No tests in archive
29   doCheck = false;
31   meta = with lib; {
32     description = "Capture stdout, stderr easily";
33     homepage = "https://github.com/oinume/iocapture";
34     license = licenses.mit;
35   };