Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchPypi, buildPythonPackage 2, gviz-api 3, protobuf 4, werkzeug 5}: 6 7buildPythonPackage rec { 8 pname = "tensorboard_plugin_profile"; 9 version = "2.4.0"; 10 format = "wheel"; 11 12 src = fetchPypi { 13 inherit pname version; 14 format = "wheel"; 15 python = "py3"; 16 sha256 = "0z6dcjvkk3pzmmmjxi2ybawnfshz5qa3ga92kqj69ld1g9k3i9bj"; 17 }; 18 19 propagatedBuildInputs = [ 20 gviz-api 21 protobuf 22 werkzeug 23 ]; 24 25 meta = with lib; { 26 description = "Profile Tensorboard Plugin."; 27 homepage = http://tensorflow.org; 28 license = licenses.asl20; 29 maintainers = with maintainers; [ ndl ]; 30 }; 31}