From 6c8ebec7db678f3dda7799348ec8739721edc811 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 16:15:27 +0100 Subject: [PATCH] pythonPackages.scripttest: Disable tests Tests are not included. Nose is also not required. --- pkgs/top-level/python-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 421fb59a8aaa..47cb218d15b0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18109,7 +18109,10 @@ in modules // { md5 = "1d1c5117ccfc7b5961cae6c1020c0848"; }; - buildInputs = with self; [ nose pytest ]; + buildInputs = with self; [ pytest ]; + + # Tests are not included. See https://github.com/pypa/scripttest/issues/11 + doCheck = false; meta = { description = "A library for testing interactive command-line applications";