mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
pythonPackages.tensorflow-tensorboard: 1.11.0 -> 1.13.0
This commit is contained in:
parent
1997ca354e
commit
d1b7ada0ba
@ -5,6 +5,7 @@
|
||||
, grpcio
|
||||
, markdown
|
||||
, futures
|
||||
, absl-py
|
||||
}:
|
||||
|
||||
# tensorflow/tensorboard is built from a downloaded wheel, because
|
||||
@ -13,7 +14,7 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tensorflow-tensorboard";
|
||||
version = "1.11.0";
|
||||
version = "1.13.0";
|
||||
format = "wheel";
|
||||
|
||||
src = fetchPypi ({
|
||||
@ -22,13 +23,15 @@ buildPythonPackage rec {
|
||||
format = "wheel";
|
||||
} // (if isPy3k then {
|
||||
python = "py3";
|
||||
sha256 = "1nkd37zq9mk0gc9x6d4x8whahbx2cn0wl94lir3g1pibdzx9hc4v";
|
||||
sha256 = "19ixs811ndx8qh72dif0ywjss3rv7pf1khsgg6rvfjb9nw8wgjc2";
|
||||
} else {
|
||||
python = "py2";
|
||||
sha256 = "1mkyb5gn952i4s7fmc9ay4yh74ysrqbiqna6dl1qmahjpbaavbf5";
|
||||
}));
|
||||
|
||||
propagatedBuildInputs = [ numpy werkzeug protobuf markdown grpcio ] ++ lib.optional (!isPy3k) futures;
|
||||
propagatedBuildInputs = [ numpy werkzeug protobuf
|
||||
markdown
|
||||
grpcio absl-py ]; # ++ lib.optional (!isPy3k) futures;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "TensorFlow's Visualization Toolkit";
|
||||
|
Loading…
Reference in New Issue
Block a user