nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.imbalanced-learn: 0.10.1 -> 0.11.0

+2 -2
+2 -2
pkgs/development/python-modules/imbalanced-learn/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "imbalanced-learn"; 12 - version = "0.10.1"; 12 + version = "0.11.0"; 13 13 disabled = isPy27; # scikit-learn>=0.21 doesn't work on python2 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-vHYJYZ7Dw4xEIpKSgjmtPRC13rCviinIOCK3tXsxn4s="; 17 + hash = "sha256-dYKuiFjm2wuS/vl90IZgoYKX7hKNeMKr3ABri9hrj9w="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [ scikit-learn ];