pythonPackages.tensorflow-tensorboard: 1.11.0 -> 1.13.0

This commit is contained in:
Jean-Philippe Bernardy 2019-02-28 11:57:43 +01:00 committed by Frederik Rietdijk
parent 1997ca354e
commit d1b7ada0ba

View File

@ -5,6 +5,7 @@
, grpcio , grpcio
, markdown , markdown
, futures , futures
, absl-py
}: }:
# tensorflow/tensorboard is built from a downloaded wheel, because # tensorflow/tensorboard is built from a downloaded wheel, because
@ -13,7 +14,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "tensorflow-tensorboard"; pname = "tensorflow-tensorboard";
version = "1.11.0"; version = "1.13.0";
format = "wheel"; format = "wheel";
src = fetchPypi ({ src = fetchPypi ({
@ -22,13 +23,15 @@ buildPythonPackage rec {
format = "wheel"; format = "wheel";
} // (if isPy3k then { } // (if isPy3k then {
python = "py3"; python = "py3";
sha256 = "1nkd37zq9mk0gc9x6d4x8whahbx2cn0wl94lir3g1pibdzx9hc4v"; sha256 = "19ixs811ndx8qh72dif0ywjss3rv7pf1khsgg6rvfjb9nw8wgjc2";
} else { } else {
python = "py2"; python = "py2";
sha256 = "1mkyb5gn952i4s7fmc9ay4yh74ysrqbiqna6dl1qmahjpbaavbf5"; 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; { meta = with stdenv.lib; {
description = "TensorFlow's Visualization Toolkit"; description = "TensorFlow's Visualization Toolkit";