diff --git a/pkgs/development/python-modules/iocapture/default.nix b/pkgs/development/python-modules/iocapture/default.nix index dd9ca9f6476..d1c01b4f653 100644 --- a/pkgs/development/python-modules/iocapture/default.nix +++ b/pkgs/development/python-modules/iocapture/default.nix @@ -3,7 +3,7 @@ , fetchPypi , flexmock , pytest -, pytest-cov +, pytestcov , six }: @@ -19,14 +19,16 @@ buildPythonPackage rec { checkInputs = [ flexmock pytest - pytest-cov + pytestcov six ]; + # No tests in archive + doCheck = false; + meta = with lib; { description = "Capture stdout, stderr easily."; homepage = https://github.com/oinume/iocapture; license = licenses.MIT; - # maintainers = [ maintainers. ]; }; } \ No newline at end of file