2021-03-19 20:04:00 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPy27
|
2019-07-30 01:04:49 +01:00
|
|
|
, pandas
|
2020-12-29 20:48:51 +00:00
|
|
|
, pytestCheckHook
|
2019-07-30 01:04:49 +01:00
|
|
|
, scikitlearn
|
|
|
|
}:
|
2018-03-31 18:49:52 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "imbalanced-learn";
|
2021-03-19 20:04:00 +00:00
|
|
|
version = "0.8.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;
|
2021-03-19 20:04:00 +00:00
|
|
|
sha256 = "0a9xrw4qsh95g85pg2611hvj6xcfncw646si2icaz22haw1x410w";
|
2018-03-31 18:49:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ scikitlearn ];
|
2020-12-29 20:48:51 +00:00
|
|
|
checkInputs = [ pytestCheckHook pandas ];
|
|
|
|
preCheck = ''
|
2019-07-30 01:04:49 +01:00
|
|
|
export HOME=$TMPDIR
|
2018-03-31 18:49:52 +01:00
|
|
|
'';
|
2020-12-29 20:48:51 +00:00
|
|
|
disabledTests = [
|
|
|
|
"estimator"
|
|
|
|
"classification"
|
|
|
|
"_generator"
|
|
|
|
"show_versions"
|
|
|
|
"test_make_imbalanced_iris"
|
2021-02-17 10:31:46 +00:00
|
|
|
"test_rusboost[SAMME.R]"
|
2021-03-19 20:04:00 +00:00
|
|
|
|
|
|
|
# https://github.com/scikit-learn-contrib/imbalanced-learn/issues/824
|
|
|
|
"ValueDifferenceMetric"
|
2020-12-29 20:48:51 +00:00
|
|
|
];
|
2018-03-31 18:49:52 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-03-31 18:49:52 +01:00
|
|
|
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;
|
2021-02-09 14:54:27 +00:00
|
|
|
maintainers = [ maintainers.rmcgibbo ];
|
2018-03-31 18:49:52 +01:00
|
|
|
};
|
|
|
|
}
|