python310Packages.imbalanced-learn: 0.10.1 -> 0.11.0

This commit is contained in:
R. Ryantm 2023-07-14 10:28:43 +00:00
parent 74174ea51f
commit 94a47f1d6d

View File

@ -9,12 +9,12 @@
buildPythonPackage rec {
pname = "imbalanced-learn";
version = "0.10.1";
version = "0.11.0";
disabled = isPy27; # scikit-learn>=0.21 doesn't work on python2
src = fetchPypi {
inherit pname version;
hash = "sha256-vHYJYZ7Dw4xEIpKSgjmtPRC13rCviinIOCK3tXsxn4s=";
hash = "sha256-dYKuiFjm2wuS/vl90IZgoYKX7hKNeMKr3ABri9hrj9w=";
};
propagatedBuildInputs = [ scikit-learn ];