python3Packages.jupyter-collaboration: 4.2.0 -> 4.2.1

This commit is contained in:
R. Ryantm
2026-02-21 09:30:43 +00:00
committed by Gaetan Lepage
parent 9c47edbb53
commit a524da89bc
@@ -21,19 +21,19 @@
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "jupyter-collaboration";
version = "4.2.0";
version = "4.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "jupyterlab";
repo = "jupyter-collaboration";
tag = "v${version}";
hash = "sha256-KXD5RRRh8cwZWZUpJrkS7RAfaeTjAHajKLl8c5MuhrA=";
tag = "v${finalAttrs.version}";
hash = "sha256-09fJT81nWGvUME3QU5hk2886y93ssl3IlVSIblxqJ78=";
};
sourceRoot = "${src.name}/projects/jupyter-collaboration";
sourceRoot = "${finalAttrs.src.name}/projects/jupyter-collaboration";
build-system = [ hatchling ];
@@ -74,8 +74,8 @@ buildPythonPackage rec {
meta = {
description = "JupyterLab Extension enabling Real-Time Collaboration";
homepage = "https://github.com/jupyterlab/jupyter_collaboration";
changelog = "https://github.com/jupyterlab/jupyter_collaboration/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/jupyterlab/jupyter_collaboration/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.bsd3;
teams = [ lib.teams.jupyter ];
};
}
})