Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / tensorboard-plugin-profile / default.nix
blob1ae1aa471be5a6c0053f3c9cd98e19b0afadaec1
1 { lib, fetchPypi, buildPythonPackage
2 , gviz-api
3 , protobuf
4 , werkzeug
5 }:
7 buildPythonPackage rec {
8   pname = "tensorboard_plugin_profile";
9   version = "2.4.0";
10   format = "wheel";
12   src = fetchPypi {
13     inherit pname version;
14     format = "wheel";
15     python = "py3";
16     sha256 = "0z6dcjvkk3pzmmmjxi2ybawnfshz5qa3ga92kqj69ld1g9k3i9bj";
17   };
19   propagatedBuildInputs = [
20     gviz-api
21     protobuf
22     werkzeug
23   ];
25   meta = with lib; {
26     description = "Profile Tensorboard Plugin.";
27     homepage = http://tensorflow.org;
28     license = licenses.asl20;
29     maintainers = with maintainers; [ ndl ];
30   };