nixpkgs/pkgs/development/python-modules/imbalanced-learn/default.nix

27 lines
847 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, scikitlearn, pandas, nose, pytest }:
buildPythonPackage rec {
pname = "imbalanced-learn";
version = "0.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "f830ebc2042b642648bfe48a9253b45019ab15a5d0ac0bbdd7261e304e71609d";
};
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;
};
}