2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchPypi,
|
|
|
|
buildPythonPackage,
|
|
|
|
setuptools,
|
|
|
|
gviz-api,
|
|
|
|
protobuf,
|
|
|
|
werkzeug,
|
2021-01-15 22:18:51 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "tensorboard_plugin_profile";
|
2023-01-20 10:41:00 +00:00
|
|
|
version = "2.11.1";
|
2021-01-15 22:18:51 +00:00
|
|
|
format = "wheel";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
format = "wheel";
|
2021-09-18 10:52:07 +00:00
|
|
|
dist = "py3";
|
2021-01-15 22:18:51 +00:00
|
|
|
python = "py3";
|
2023-01-20 10:41:00 +00:00
|
|
|
hash = "sha256-t9AZg0BGjDcOxtoRBHZO0joIgLHpoKqEUY4pxmw8sjg=";
|
2021-01-15 22:18:51 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
nativeBuildInputs = [ setuptools ];
|
2022-09-30 11:47:45 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
gviz-api
|
|
|
|
protobuf
|
|
|
|
werkzeug
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Profile Tensorboard Plugin";
|
2021-12-06 16:07:01 +00:00
|
|
|
homepage = "http://tensorflow.org";
|
2021-01-15 22:18:51 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ ndl ];
|
|
|
|
};
|
|
|
|
}
|