2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, python
|
2017-06-05 22:04:28 +01:00
|
|
|
, gfortran, glibcLocales
|
2018-11-12 11:58:40 +00:00
|
|
|
, numpy, scipy, pytest, pillow
|
2017-06-05 22:04:28 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "scikit-learn";
|
2019-01-13 14:13:10 +00:00
|
|
|
version = "0.20.2";
|
2018-07-26 12:58:58 +01:00
|
|
|
# UnboundLocalError: local variable 'message' referenced before assignment
|
2018-07-29 09:44:20 +01:00
|
|
|
disabled = stdenv.isi686; # https://github.com/scikit-learn/scikit-learn/issues/5534
|
2017-06-05 22:04:28 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-01-13 14:13:10 +00:00
|
|
|
sha256 = "1ri9kx0yrn85h6ivkaja35afbyhimxn8lsairgns2wi5xv3wfnxw";
|
2017-06-05 22:04:28 +01:00
|
|
|
};
|
|
|
|
|
2018-11-12 11:58:40 +00:00
|
|
|
buildInputs = [ pillow gfortran glibcLocales ];
|
2017-06-05 22:04:28 +01:00
|
|
|
propagatedBuildInputs = [ numpy scipy numpy.blas ];
|
2018-11-12 11:58:40 +00:00
|
|
|
checkInputs = [ pytest ];
|
2017-06-05 22:04:28 +01:00
|
|
|
|
|
|
|
LC_ALL="en_US.UTF-8";
|
|
|
|
|
2018-11-13 12:59:20 +00:00
|
|
|
doCheck = !stdenv.isAarch64;
|
2018-11-12 11:58:40 +00:00
|
|
|
# Skip test_feature_importance_regression - does web fetch
|
2017-06-05 22:04:28 +01:00
|
|
|
checkPhase = ''
|
2018-11-12 11:58:40 +00:00
|
|
|
cd $TMPDIR
|
|
|
|
HOME=$TMPDIR OMP_NUM_THREADS=1 pytest -k "not test_feature_importance_regression" --pyargs sklearn
|
2017-06-05 22:04:28 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A set of python modules for machine learning and data mining";
|
|
|
|
homepage = http://scikit-learn.org;
|
|
|
|
license = licenses.bsd3;
|
2018-07-26 12:58:58 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-06-05 22:04:28 +01:00
|
|
|
};
|
|
|
|
}
|