nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python39Packages.tesnorboard-data-server: init at 0.6.1

+27
+25
pkgs/development/python-modules/tensorboard-data-server/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, pythonOlder }: 2 + 3 + buildPythonPackage rec { 4 + pname = "tensorboard-data-server"; 5 + version = "0.6.1"; 6 + format = "wheel"; 7 + disabled = pythonOlder "3.6"; 8 + 9 + src = fetchPypi { 10 + pname = "tensorboard_data_server"; 11 + inherit version format; 12 + dist = "py3"; 13 + python = "py3"; 14 + sha256 = "sha256-gJ/piHaC01wffR9U8PQPmLsfdxsUJltFPKBR4s5Y/Kc="; 15 + }; 16 + 17 + pythonImportsCheck = [ "tensorboard_data_server" ]; 18 + 19 + meta = with lib; { 20 + description = "Fast data loading for TensorBoard"; 21 + homepage = "https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server"; 22 + license = licenses.asl20; 23 + maintainers = with maintainers; [ abbradar ]; 24 + }; 25 + }
+2
pkgs/top-level/python-packages.nix
··· 8635 8635 8636 8636 tenacity = callPackage ../development/python-modules/tenacity { }; 8637 8637 8638 + tensorboard-data-server = callPackage ../development/python-modules/tensorboard-data-server { }; 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 {};