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