-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38245 from xeji/p/imbalanced-learn
pythonPackages.imbalanced-learn: 0.3.2 -> 0.3.3, fix build
- Loading branch information
Showing
2 changed files
with
27 additions
and
23 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
pkgs/development/python-modules/imbalanced-learn/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ stdenv, buildPythonPackage, fetchPypi, scikitlearn, pandas, nose, pytest }: | ||
|
||
buildPythonPackage rec { | ||
pname = "imbalanced-learn"; | ||
version = "0.3.3"; | ||
|
||
src = fetchPypi { | ||
inherit pname version; | ||
sha256 = "1r5js9kw6rvmfvxxkfjlcxv5xn5h19qvg7d41byilxwq9kd515g4"; | ||
}; | ||
|
||
propagatedBuildInputs = [ scikitlearn ]; | ||
checkInputs = [ nose pytest pandas ]; | ||
checkPhase = '' | ||
export HOME=$PWD | ||
# skip some tests that fail because of minimal rounding errors | ||
py.test imblearn --ignore=imblearn/metrics/classification.py | ||
py.test doc/*.rst | ||
''; | ||
|
||
meta = with stdenv.lib; { | ||
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; | ||
license = licenses.mit; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters