python.pkgs.statsmodels: disable tests

This commit is contained in:
Frederik Rietdijk 2017-09-07 09:48:54 +02:00
parent aabadda0c2
commit a75dd64338

View File

@ -21,9 +21,12 @@ buildPythonPackage rec {
sha256 = "26431ab706fbae896db7870a0892743bfbb9f5c83231644692166a31d2d86048"; sha256 = "26431ab706fbae896db7870a0892743bfbb9f5c83231644692166a31d2d86048";
}; };
buildInputs = with self; [ nose ]; checkInputs = with self; [ nose ];
propagatedBuildInputs = with self; [numpy scipy pandas patsy cython matplotlib]; propagatedBuildInputs = with self; [numpy scipy pandas patsy cython matplotlib];
# Huge test suites with several test failures
doCheck = false;
meta = { meta = {
description = "Statistical computations and models for use with SciPy"; description = "Statistical computations and models for use with SciPy";
homepage = https://www.github.com/statsmodels/statsmodels; homepage = https://www.github.com/statsmodels/statsmodels;