From f43fb79c08b8627da6b10abbf73c64c9a910dc04 Mon Sep 17 00:00:00 2001 From: Marin Date: Fri, 5 May 2023 14:31:09 -0400 Subject: [PATCH] [nbstripout] Don't propagate ipython If you have a devShell with `python311` and `nbstripout` in `buildInputs`, running `python --version` will output 3.10 as of today, because `nbstripout` is propagating python through ipython. --- pkgs/applications/version-management/nbstripout/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/applications/version-management/nbstripout/default.nix b/pkgs/applications/version-management/nbstripout/default.nix index e88f21a85cb1..234176fbedc6 100644 --- a/pkgs/applications/version-management/nbstripout/default.nix +++ b/pkgs/applications/version-management/nbstripout/default.nix @@ -21,7 +21,6 @@ python3.pkgs.buildPythonApplication rec { ''; propagatedBuildInputs = with python3.pkgs; [ - ipython nbformat ];