From a524da89bc0979487a1abdeb1eb3999938b70965 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 19 Feb 2026 23:29:02 +0000 Subject: [PATCH] python3Packages.jupyter-collaboration: 4.2.0 -> 4.2.1 --- .../jupyter-collaboration/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/jupyter-collaboration/default.nix b/pkgs/development/python-modules/jupyter-collaboration/default.nix index 7535561c19c9..7fe0ec01b2ea 100644 --- a/pkgs/development/python-modules/jupyter-collaboration/default.nix +++ b/pkgs/development/python-modules/jupyter-collaboration/default.nix @@ -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 ]; }; -} +})