From 07e4a7a6be0b46f038817b3478aa8d0cc3542f69 Mon Sep 17 00:00:00 2001 From: Hythera <87016780+Hythera@users.noreply.github.com> Date: Sun, 22 Feb 2026 14:22:46 +0100 Subject: [PATCH] jupyter{,-all}: set pname and version --- pkgs/applications/editors/jupyter/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/jupyter/default.nix b/pkgs/applications/editors/jupyter/default.nix index 9b078be78a70..4e7c915fd920 100644 --- a/pkgs/applications/editors/jupyter/default.nix +++ b/pkgs/applications/editors/jupyter/default.nix @@ -14,8 +14,10 @@ let makeWrapperArgs = [ "--prefix JUPYTER_PATH : ${jupyterPath}" ]; }).overrideAttrs (oldAttrs: { + inherit (python3.pkgs.notebook) version; + pname = "jupyter"; meta = oldAttrs.meta // { - mainProgram = "jupyter-notebook"; + mainProgram = "jupyter"; }; }); in