tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.tensorboard: 2.9.1 -> 2.10.0
Martin Weinelt
3 years ago
f256380d
81ab49a9
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
tensorboard
default.nix
+4
-4
pkgs/development/python-modules/tensorboard/default.nix
···
23
23
24
24
buildPythonPackage rec {
25
25
pname = "tensorboard";
26
26
-
version = "2.9.1";
26
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
34
-
hash = "sha256-uqcn95F3b55YQdNHEncgzu1LvVnDa0BgS5X7KuYCknY=";
34
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
44
-
--replace "google-auth (<2,>=1.6.3)" "google-auth (<3,>=1.6.3)" \
45
45
-
--replace "google-auth-oauthlib (<0.5,>=0.4.1)" "google-auth-oauthlib (<0.6,>=0.4.1)"
44
44
+
--replace "google-auth-oauthlib (<0.5,>=0.4.1)" "google-auth-oauthlib (<0.6,>=0.4.1)" \
45
45
+
--replace "protobuf (<3.20,>=3.9.2)" "protobuf (>=3.9.2)"
46
46
47
47
popd
48
48
wheel pack ./unpacked/tensorboard-${version}