depot/third_party/nixpkgs/pkgs/development/python-modules/jupyterlab/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

72 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatch-jupyter-builder,
hatchling,
async-lru,
httpx,
packaging,
tornado,
ipykernel,
jupyter-core,
jupyter-lsp,
jupyterlab-server,
jupyter-server,
notebook-shim,
jinja2,
tomli,
pythonOlder,
}:
buildPythonPackage rec {
pname = "jupyterlab";
version = "4.2.5";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-rn86G4y4i09VAJznn6fAb5nXDNY2Ae5KqRgV0FT0b3U=";
};
build-system = [
hatch-jupyter-builder
hatchling
];
dependencies = [
async-lru
httpx
packaging
tornado
ipykernel
jupyter-core
jupyter-lsp
jupyterlab-server
jupyter-server
notebook-shim
jinja2
] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
makeWrapperArgs = [
"--set"
"JUPYTERLAB_DIR"
"$out/share/jupyter/lab"
];
# Depends on npm
doCheck = false;
pythonImportsCheck = [ "jupyterlab" ];
meta = with lib; {
changelog = "https://github.com/jupyterlab/jupyterlab/blob/v${version}/CHANGELOG.md";
description = "Jupyter lab environment notebook server extension";
license = licenses.bsd3;
homepage = "https://jupyter.org/";
maintainers = lib.teams.jupyter.members;
mainProgram = "jupyter-lab";
};
}