From b241e766bce038bf21ccd9718900c35cb4b9162e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 24 Nov 2018 14:35:58 +0100 Subject: [PATCH] fixup iocapture --- pkgs/development/python-modules/iocapture/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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