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