Merge pull request #112526 from rmcgibbo/imbalanced-learn
python3Packages.imbalanced-learn: fix tests
This commit is contained in:
commit
c27692c75b
1 changed files with 12 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, isPy27
|
{ lib, buildPythonPackage, fetchPypi, isPy27
|
||||||
|
, fetchpatch
|
||||||
, pandas
|
, pandas
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, scikitlearn
|
, scikitlearn
|
||||||
|
@ -15,6 +16,16 @@ buildPythonPackage rec {
|
||||||
sha256 = "da59de0d1c0fa66f62054dd9a0a295a182563aa1abbb3bf9224a3678fcfe8fa4";
|
sha256 = "da59de0d1c0fa66f62054dd9a0a295a182563aa1abbb3bf9224a3678fcfe8fa4";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix compatibility with scikit-learn 0.24. This patch will be included in releases of
|
||||||
|
# imbalanced-learn after 0.7.0
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/scikit-learn-contrib/imbalanced-learn/commit/dc4051fe0011c68d900be05971b71016d4ad9e90.patch";
|
||||||
|
sha256 = "1rv61k9wv4q37a0v943clr8fflcg9ly530smgndgkjlxkyzw6swh";
|
||||||
|
excludes = ["doc/conf.py" "build_tools/*" "azure-pipelines.yml"];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ scikitlearn ];
|
propagatedBuildInputs = [ scikitlearn ];
|
||||||
checkInputs = [ pytestCheckHook pandas ];
|
checkInputs = [ pytestCheckHook pandas ];
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
|
@ -32,5 +43,6 @@ buildPythonPackage rec {
|
||||||
description = "Library offering a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance";
|
description = "Library offering a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance";
|
||||||
homepage = "https://github.com/scikit-learn-contrib/imbalanced-learn";
|
homepage = "https://github.com/scikit-learn-contrib/imbalanced-learn";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.rmcgibbo ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue