depot/third_party/nixpkgs/pkgs/development/python-modules/jupyterlab/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +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.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-oQ+3EIWmkAggxi1DMkAFBGQC/8jw/eaWED43I4qDlQc=";
};
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";
};
}