2019-07-30 01:04:49 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy27
|
|
|
|
, nose
|
|
|
|
, pandas
|
|
|
|
, pytest
|
|
|
|
, scikitlearn
|
|
|
|
, tensorflow
|
|
|
|
}:
|
2018-03-31 18:49:52 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "imbalanced-learn";
|
2020-08-16 18:31:03 +01:00
|
|
|
version = "0.7.0";
|
2019-07-30 01:04:49 +01:00
|
|
|
disabled = isPy27; # scikit-learn>=0.21 doesn't work on python2
|
2018-03-31 18:49:52 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 18:31:03 +01:00
|
|
|
sha256 = "da59de0d1c0fa66f62054dd9a0a295a182563aa1abbb3bf9224a3678fcfe8fa4";
|
2018-03-31 18:49:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ scikitlearn ];
|
|
|
|
checkInputs = [ nose pytest pandas ];
|
|
|
|
checkPhase = ''
|
2019-07-30 01:04:49 +01:00
|
|
|
export HOME=$TMPDIR
|
2018-03-31 18:49:52 +01:00
|
|
|
# skip some tests that fail because of minimal rounding errors
|
2019-07-30 01:04:49 +01:00
|
|
|
# or very large dependencies (keras + tensorflow)
|
|
|
|
py.test imblearn -k 'not estimator \
|
|
|
|
and not classification \
|
2019-11-28 00:58:15 +00:00
|
|
|
and not _generator \
|
|
|
|
and not show_versions'
|
2018-03-31 18:49:52 +01: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 02:11:51 +01:00
|
|
|
homepage = "https://github.com/scikit-learn-contrib/imbalanced-learn";
|
2018-03-31 18:49:52 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|