Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / tensorboard-plugin-profile / default.nix
blob158437a93d1fcee3ccde94efbf7bfbb0aa6f7358
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , setuptools
5 , gviz-api
6 , protobuf
7 , werkzeug
8 }:
10 buildPythonPackage rec {
11   pname = "tensorboard_plugin_profile";
12   version = "2.11.1";
13   format = "wheel";
15   src = fetchPypi {
16     inherit pname version;
17     format = "wheel";
18     dist = "py3";
19     python = "py3";
20     hash = "sha256-t9AZg0BGjDcOxtoRBHZO0joIgLHpoKqEUY4pxmw8sjg=";
21   };
23   nativeBuildInputs = [
24     setuptools
25   ];
27   propagatedBuildInputs = [
28     gviz-api
29     protobuf
30     werkzeug
31   ];
33   meta = with lib; {
34     description = "Profile Tensorboard Plugin.";
35     homepage = "http://tensorflow.org";
36     license = licenses.asl20;
37     maintainers = with maintainers; [ ndl ];
38   };