1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 flexmock,
6 pytestCheckHook,
7 pytest-cov-stub,
8 six,
9}:
10
11buildPythonPackage rec {
12 pname = "iocapture";
13 version = "0.1.2";
14 format = "setuptools";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "86670e1808bcdcd4f70112f43da72ae766f04cd8311d1071ce6e0e0a72e37ee8";
19 };
20
21 nativeCheckInputs = [
22 flexmock
23 pytestCheckHook
24 pytest-cov-stub
25 six
26 ];
27
28 # No tests in archive
29 doCheck = false;
30
31 meta = with lib; {
32 description = "Capture stdout, stderr easily";
33 homepage = "https://github.com/oinume/iocapture";
34 license = licenses.mit;
35 };
36}