pythonPackages.seaborn: fix test runner, disable tests

This commit is contained in:
Frederik Rietdijk 2016-01-24 18:49:16 +01:00
parent 64e4bdf109
commit 6d478b3faf

View File

@ -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/";