python3Packages.jupyterlab: 4.5.7 -> 4.5.8

This commit is contained in:
Stefan Haan
2026-06-16 18:39:39 +02:00
parent de51b6369f
commit 74925e2eaf
@@ -21,16 +21,16 @@
traitlets,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "jupyterlab";
version = "4.5.7";
version = "4.5.8";
pyproject = true;
src = fetchFromGitHub {
owner = "jupyterlab";
repo = "jupyterlab";
tag = "v${version}";
hash = "sha256-kJ9DWfb9VWEPfpG17E3KIvGqWlr0iO2a094Ne7LS1U8=";
tag = "v${finalAttrs.version}";
hash = "sha256-OtytFZdgGzbQF3icglwRpAn0HhJNyjI6oNS01gfpzkA=";
};
nativeBuildInputs = [
@@ -43,9 +43,9 @@ buildPythonPackage rec {
'';
offlineCache = yarn-berry_3.fetchYarnBerryDeps {
inherit src;
sourceRoot = "${src.name}/jupyterlab/staging";
hash = "sha256-2YGs0clj44BSEGdp3wChw97jFSMiAeMnCv3PNhdnEeA=";
inherit (finalAttrs) src;
sourceRoot = "${finalAttrs.src.name}/jupyterlab/staging";
hash = "sha256-wgqwEl01VinYU5haL1X8Na1lNNcyqCfRaRBze4ypPPo=";
};
preBuild = ''
@@ -85,11 +85,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "jupyterlab" ];
meta = {
changelog = "https://github.com/jupyterlab/jupyterlab/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/jupyterlab/jupyterlab/blob/${finalAttrs.src.tag}/CHANGELOG.md";
description = "Jupyter lab environment notebook server extension";
license = lib.licenses.bsd3;
homepage = "https://jupyter.org/";
teams = [ lib.teams.jupyter ];
mainProgram = "jupyter-lab";
};
}
})