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

python310Packages.scikit-learn: 1.2.1 -> 1.3.0

https://scikit-learn.org/stable/whats_new/v1.3.html#version-1-3-0

+2 -2
+2 -2
pkgs/development/python-modules/scikit-learn/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "scikit-learn"; 22 - version = "1.2.1"; 22 + version = "1.3.0"; 23 23 disabled = pythonOlder "3.6"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - hash = "sha256-+/ilyJPJtLmbzH7Y+z6FAJV6ET9BAYYDhtBmNVIPfPs="; 27 + hash = "sha256-i+VJiG9e2kZDa25VWw5Ic7TxCqIcB99FxLwXNa+8zXo="; 28 28 }; 29 29 30 30 buildInputs = [