tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python39Packages.tesnorboard-data-server: init at 0.6.1
Sandro Jäckel
4 years ago
3b767785
9084979f
+27
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
tensorboard-data-server
default.nix
top-level
python-packages.nix
+25
pkgs/development/python-modules/tensorboard-data-server/default.nix
reviewed
···
1
1
+
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
2
2
+
3
3
+
buildPythonPackage rec {
4
4
+
pname = "tensorboard-data-server";
5
5
+
version = "0.6.1";
6
6
+
format = "wheel";
7
7
+
disabled = pythonOlder "3.6";
8
8
+
9
9
+
src = fetchPypi {
10
10
+
pname = "tensorboard_data_server";
11
11
+
inherit version format;
12
12
+
dist = "py3";
13
13
+
python = "py3";
14
14
+
sha256 = "sha256-gJ/piHaC01wffR9U8PQPmLsfdxsUJltFPKBR4s5Y/Kc=";
15
15
+
};
16
16
+
17
17
+
pythonImportsCheck = [ "tensorboard_data_server" ];
18
18
+
19
19
+
meta = with lib; {
20
20
+
description = "Fast data loading for TensorBoard";
21
21
+
homepage = "https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server";
22
22
+
license = licenses.asl20;
23
23
+
maintainers = with maintainers; [ abbradar ];
24
24
+
};
25
25
+
}
+2
pkgs/top-level/python-packages.nix
reviewed
···
8635
8635
8636
8636
tenacity = callPackage ../development/python-modules/tenacity { };
8637
8637
8638
8638
+
tensorboard-data-server = callPackage ../development/python-modules/tensorboard-data-server { };
8639
8639
+
8638
8640
tensorboard-plugin-profile = callPackage ../development/python-modules/tensorboard-plugin-profile { };
8639
8641
8640
8642
tensorboard-plugin-wit = callPackage ../development/python-modules/tensorboard-plugin-wit {};