2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy27
|
2019-07-29 17:04:49 -07:00
|
|
|
, pandas
|
2020-12-29 12:48:51 -08:00
|
|
|
, pytestCheckHook
|
2019-07-29 17:04:49 -07:00
|
|
|
, scikitlearn
|
|
|
|
, tensorflow
|
|
|
|
}:
|
2018-03-31 10:49:52 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "imbalanced-learn";
|
2020-08-16 10:31:03 -07:00
|
|
|
version = "0.7.0";
|
2019-07-29 17:04:49 -07:00
|
|
|
disabled = isPy27; # scikit-learn>=0.21 doesn't work on python2
|
2018-03-31 10:49:52 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 10:31:03 -07:00
|
|
|
sha256 = "da59de0d1c0fa66f62054dd9a0a295a182563aa1abbb3bf9224a3678fcfe8fa4";
|
2018-03-31 10:49:52 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ scikitlearn ];
|
2020-12-29 12:48:51 -08:00
|
|
|
checkInputs = [ pytestCheckHook pandas ];
|
|
|
|
preCheck = ''
|
2019-07-29 17:04:49 -07:00
|
|
|
export HOME=$TMPDIR
|
2018-03-31 10:49:52 -07:00
|
|
|
'';
|
2020-12-29 12:48:51 -08:00
|
|
|
disabledTests = [
|
|
|
|
"estimator"
|
|
|
|
"classification"
|
|
|
|
"_generator"
|
|
|
|
"show_versions"
|
|
|
|
"test_make_imbalanced_iris"
|
|
|
|
];
|
2018-03-31 10:49:52 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-03-31 10:49:52 -07:00
|
|
|
description = "Library offering a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/scikit-learn-contrib/imbalanced-learn";
|
2018-03-31 10:49:52 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|