From 7ba14e904e184efc9a671ec199eaea1d25f3daad Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 6 Jan 2016 13:14:40 +0100 Subject: [PATCH] pythonPackages.toolz: use correct testrunner --- pkgs/top-level/python-packages.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f84a1e50c36..a1bb7d7469c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19113,6 +19113,12 @@ in modules // { sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd"; }; + buildInputs = with self; [ nose ]; + + checkPhase = '' + nosetests toolz/tests + ''; + meta = { homepage = "http://github.com/pytoolz/toolz/"; description = "List processing tools and functional utilities";