tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
imbalanced-learn: 0.13.0->0.14.0
Philip Wilk
7 months ago
fbcbf2cd
4c64e67b
+3
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
imbalanced-learn
default.nix
+3
-4
pkgs/development/python-modules/imbalanced-learn/default.nix
reviewed
···
14
14
tensorflow,
15
15
threadpoolctl,
16
16
pytestCheckHook,
17
17
-
sklearn-compat,
18
17
python,
19
18
}:
20
19
21
20
buildPythonPackage rec {
22
21
pname = "imbalanced-learn";
23
23
-
version = "0.13.0";
22
22
+
version = "0.14.0";
24
23
pyproject = true;
25
24
26
25
disabled = pythonOlder "3.8";
···
28
29
owner = "scikit-learn-contrib";
29
30
repo = "imbalanced-learn";
30
31
tag = version;
31
31
-
hash = "sha256-osmALi5vTV+3kgldY/VhYkNvpXX11KwJ/dIX/5E7Uhc=";
32
32
+
hash = "sha256-1R7jHOkTO3zK9bkUvvOPQ420ofqIO7J1rqixFEbApR0=";
32
33
};
33
34
34
35
build-system = [
···
42
43
scikit-learn
43
44
scipy
44
45
threadpoolctl
45
45
-
sklearn-compat
46
46
];
47
47
48
48
optional-dependencies = {
···
80
82
disabledTests = [
81
83
# Broken upstream test https://github.com/scikit-learn-contrib/imbalanced-learn/issues/1131
82
84
"test_estimators_compatibility_sklearn"
85
85
+
"test_balanced_bagging_classifier_with_function_sampler"
83
86
];
84
87
85
88
meta = {