depot/third_party/nixpkgs/pkgs/development/python-modules/jupyterlab/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02: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.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-NDqXn7lYL9CMhRGCPjIHAygc0HKgBJvNr9x6/tp/JTc=";
};
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";
};
}