2019-07-30 02:04:49 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy27
|
|
|
|
, nose
|
|
|
|
, pandas
|
|
|
|
, pytest
|
|
|
|
, scikitlearn
|
|
|
|
, tensorflow
|
|
|
|
}:
|
2018-03-31 19:49:52 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "imbalanced-learn";
|
2019-12-19 20:31:13 +01:00
|
|
|
version = "0.6.1";
|
2019-07-30 02:04:49 +02:00
|
|
|
disabled = isPy27; # scikit-learn>=0.21 doesn't work on python2
|
2018-03-31 19:49:52 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 20:31:13 +01:00
|
|
|
sha256 = "94f846ff8d19ee9ea42ba6feddfbc85d5b42098bd3b62318f8d3bc5c7133b274";
|
2018-03-31 19:49:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ scikitlearn ];
|
|
|
|
checkInputs = [ nose pytest pandas ];
|
|
|
|
checkPhase = ''
|
2019-07-30 02:04:49 +02:00
|
|
|
export HOME=$TMPDIR
|
2018-03-31 19:49:52 +02:00
|
|
|
# skip some tests that fail because of minimal rounding errors
|
2019-07-30 02:04:49 +02:00
|
|
|
# or very large dependencies (keras + tensorflow)
|
|
|
|
py.test imblearn -k 'not estimator \
|
|
|
|
and not classification \
|
2019-11-28 01:58:15 +01:00
|
|
|
and not _generator \
|
|
|
|
and not show_versions'
|
2018-03-31 19:49:52 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library offering a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/scikit-learn-contrib/imbalanced-learn";
|
2018-03-31 19:49:52 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|