python39Packages.tesnorboard-data-server: init at 0.6.1
This commit is contained in:
parent
9084979fc3
commit
3b7677852a
@ -0,0 +1,25 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tensorboard-data-server";
|
||||
version = "0.6.1";
|
||||
format = "wheel";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "tensorboard_data_server";
|
||||
inherit version format;
|
||||
dist = "py3";
|
||||
python = "py3";
|
||||
sha256 = "sha256-gJ/piHaC01wffR9U8PQPmLsfdxsUJltFPKBR4s5Y/Kc=";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "tensorboard_data_server" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fast data loading for TensorBoard";
|
||||
homepage = "https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
@ -8635,6 +8635,8 @@ in {
|
||||
|
||||
tenacity = callPackage ../development/python-modules/tenacity { };
|
||||
|
||||
tensorboard-data-server = callPackage ../development/python-modules/tensorboard-data-server { };
|
||||
|
||||
tensorboard-plugin-profile = callPackage ../development/python-modules/tensorboard-plugin-profile { };
|
||||
|
||||
tensorboard-plugin-wit = callPackage ../development/python-modules/tensorboard-plugin-wit {};
|
||||
|
Loading…
Reference in New Issue
Block a user