python39Packages.tesnorboard-data-server: init at 0.6.1

This commit is contained in:
Sandro Jäckel 2021-08-24 21:39:57 +02:00
parent 9084979fc3
commit 3b7677852a
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 27 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -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 {};