fixup iocapture

This commit is contained in:
Frederik Rietdijk 2018-11-24 14:35:58 +01:00
parent 3d0f73ca12
commit b241e766bc

View File

@ -3,7 +3,7 @@
, fetchPypi , fetchPypi
, flexmock , flexmock
, pytest , pytest
, pytest-cov , pytestcov
, six , six
}: }:
@ -19,14 +19,16 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
flexmock flexmock
pytest pytest
pytest-cov pytestcov
six six
]; ];
# No tests in archive
doCheck = false;
meta = with lib; { meta = with lib; {
description = "Capture stdout, stderr easily."; description = "Capture stdout, stderr easily.";
homepage = https://github.com/oinume/iocapture; homepage = https://github.com/oinume/iocapture;
license = licenses.MIT; license = licenses.MIT;
# maintainers = [ maintainers. ];
}; };
} }