1{ lib, fetchPypi, buildPythonPackage
2, gviz-api
3, protobuf
4, werkzeug
5}:
6
7buildPythonPackage rec {
8 pname = "tensorboard_plugin_profile";
9 version = "2.5.0";
10 format = "wheel";
11
12 src = fetchPypi {
13 inherit pname version;
14 format = "wheel";
15 dist = "py3";
16 python = "py3";
17 sha256 = "16jch9py98h7wrffdiz6j0i3kdykxdp5m0kfxr1fxy2phqanpjqk";
18 };
19
20 propagatedBuildInputs = [
21 gviz-api
22 protobuf
23 werkzeug
24 ];
25
26 meta = with lib; {
27 description = "Profile Tensorboard Plugin.";
28 homepage = "http://tensorflow.org";
29 license = licenses.asl20;
30 maintainers = with maintainers; [ ndl ];
31 };
32}