From 6f9f91d331eb7634bcb102ac66550801b9bc2aa9 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Thu, 26 Mar 2020 14:49:56 -0400 Subject: [PATCH] python3Packages.cufflinks: add nose to checkInputs --- pkgs/development/python-modules/cufflinks/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/cufflinks/default.nix b/pkgs/development/python-modules/cufflinks/default.nix index 315c28c74caa..4c2db1f52146 100644 --- a/pkgs/development/python-modules/cufflinks/default.nix +++ b/pkgs/development/python-modules/cufflinks/default.nix @@ -4,6 +4,7 @@ , ipython , ipywidgets , pytest +, nose , numpy , pandas , six @@ -30,7 +31,7 @@ buildPythonPackage rec { statsmodels ]; - checkInputs = [ pytest ]; + checkInputs = [ pytest nose ]; # ignore tests which are incompatible with pandas>=1.0 # https://github.com/santosjorge/cufflinks/issues/236