forked from mirrors/nixpkgs
pythonPackages.seaborn: fix test runner, disable tests
This commit is contained in:
parent
64e4bdf109
commit
6d478b3faf
|
@ -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/";
|
||||
|
|
Loading…
Reference in a new issue