9e95109b89
Fix build after https://github.com/NixOS/nixpkgs/pull/56669. Update the python2 hash and re-add the python2 `futures` dependency. Not sure if there was a reason for it to be removed in the first place.
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ stdenv, lib, fetchPypi, buildPythonPackage, isPy3k
|
|
, numpy
|
|
, werkzeug
|
|
, protobuf
|
|
, grpcio
|
|
, markdown
|
|
, futures
|
|
, absl-py
|
|
}:
|
|
|
|
# tensorflow/tensorboard is built from a downloaded wheel, because
|
|
# https://github.com/tensorflow/tensorboard/issues/719 blocks
|
|
# buildBazelPackage.
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tensorflow-tensorboard";
|
|
version = "1.13.0";
|
|
format = "wheel";
|
|
|
|
src = fetchPypi ({
|
|
pname = "tensorboard";
|
|
inherit version;
|
|
format = "wheel";
|
|
} // (if isPy3k then {
|
|
python = "py3";
|
|
sha256 = "19ixs811ndx8qh72dif0ywjss3rv7pf1khsgg6rvfjb9nw8wgjc2";
|
|
} else {
|
|
python = "py2";
|
|
sha256 = "0qpv6jsf6jjvdl95qvarn006kfj5a99mq925d73xg4af50ssvkrf";
|
|
}));
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
werkzeug
|
|
protobuf
|
|
markdown
|
|
grpcio absl-py
|
|
] ++ lib.optional (!isPy3k) futures;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "TensorFlow's Visualization Toolkit";
|
|
homepage = http://tensorflow.org;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|