From e99c9fba8b492e24d72930f1adebd265aed65730 Mon Sep 17 00:00:00 2001 From: Luna Nova Date: Mon, 2 Mar 2026 14:33:48 -0800 Subject: [PATCH] jupyter: inherit notebook meta rather than python3 meta Fixes #495922 and brings joy to @mweinelt's notifications --- pkgs/applications/editors/jupyter/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/jupyter/default.nix b/pkgs/applications/editors/jupyter/default.nix index 4e7c915fd920..a11b606907e9 100644 --- a/pkgs/applications/editors/jupyter/default.nix +++ b/pkgs/applications/editors/jupyter/default.nix @@ -16,7 +16,7 @@ let (oldAttrs: { inherit (python3.pkgs.notebook) version; pname = "jupyter"; - meta = oldAttrs.meta // { + meta = python3.pkgs.notebook.meta // { mainProgram = "jupyter"; }; });