lol

python3Packages.tensorboard: 2.9.1 -> 2.10.0

+4 -4
+4 -4
pkgs/development/python-modules/tensorboard/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "tensorboard"; 26 - version = "2.9.1"; 26 + version = "2.10.0"; 27 27 format = "wheel"; 28 28 disabled = pythonOlder "3.6" || pythonAtLeast "3.11"; 29 29 ··· 31 31 inherit pname version format; 32 32 dist = "py3"; 33 33 python = "py3"; 34 - hash = "sha256-uqcn95F3b55YQdNHEncgzu1LvVnDa0BgS5X7KuYCknY="; 34 + hash = "sha256-dskaXolZzSIIzDLLF6DLACutq7ZqBqwq8Cp4EPSaWeM="; 35 35 }; 36 36 37 37 postPatch = '' ··· 41 41 pushd unpacked/tensorboard-${version} 42 42 43 43 substituteInPlace tensorboard-${version}.dist-info/METADATA \ 44 - --replace "google-auth (<2,>=1.6.3)" "google-auth (<3,>=1.6.3)" \ 45 - --replace "google-auth-oauthlib (<0.5,>=0.4.1)" "google-auth-oauthlib (<0.6,>=0.4.1)" 44 + --replace "google-auth-oauthlib (<0.5,>=0.4.1)" "google-auth-oauthlib (<0.6,>=0.4.1)" \ 45 + --replace "protobuf (<3.20,>=3.9.2)" "protobuf (>=3.9.2)" 46 46 47 47 popd 48 48 wheel pack ./unpacked/tensorboard-${version}