From 6d478b3fafe58225e9c551ecad6d37272e295453 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 18:49:16 +0100 Subject: [PATCH] pythonPackages.seaborn: fix test runner, disable tests --- pkgs/top-level/python-packages.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7f159554dcd1..9a4456bd7d69 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18529,15 +18529,23 @@ in modules // { }; }; - seaborn= buildPythonPackage rec { + seaborn = buildPythonPackage rec { name = "seaborn-0.6.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/seaborn/${name}.tar.gz"; md5 = "bc518f1f45dadb9deb2bb57ca3af3cad"; }; + buildInputs = with self; [ nose ]; propagatedBuildInputs = with self; [ pandas matplotlib ]; + checkPhase = '' + nosetests -v + ''; + + # Computationally very demanding tests + doCheck = false; + meta = { description = "statisitical data visualization"; homepage = "http://stanford.edu/~mwaskom/software/seaborn/";