1 { lib, fetchPypi, buildPythonPackage, isPy3k
10 , tensorboard-plugin-wit
11 , tensorboard-plugin-profile
14 # tensorflow/tensorboard is built from a downloaded wheel, because
15 # https://github.com/tensorflow/tensorboard/issues/719 blocks
18 buildPythonPackage rec {
19 pname = "tensorflow-tensorboard";
25 pname = "tensorboard";
26 inherit version format;
28 sha256 = "0f17h6i398n8maam0r3rssqvdqnqbwjyf96nnhf482anm1iwdq6d";
31 propagatedBuildInputs = [
39 tensorboard-plugin-profile
40 tensorboard-plugin-wit
41 # not declared in install_requires, but used at runtime
42 # https://github.com/NixOS/nixpkgs/issues/73840
46 # in the absence of a real test suite, run cli and imports
48 $out/bin/tensorboard --help > /dev/null
51 pythonImportsCheck = [
62 description = "TensorFlow's Visualization Toolkit";
63 homepage = "http://tensorflow.org";
64 license = licenses.asl20;
65 maintainers = with maintainers; [ abbradar ];