From 8f914ea8d1c6318db65690ff69a58e2f716c6e6f Mon Sep 17 00:00:00 2001 From: FliegendeWurst Date: Tue, 7 Jan 2025 18:38:28 +0100 Subject: [PATCH] doc: fix pypy39 removal (cherry picked from commit 59725b22ae5b0f7289cbea91a010f6ca12fe15d3) --- doc/doc-support/python-interpreter-table.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/doc-support/python-interpreter-table.nix b/doc/doc-support/python-interpreter-table.nix index f06609e363f2..0ea478812872 100644 --- a/doc/doc-support/python-interpreter-table.nix +++ b/doc/doc-support/python-interpreter-table.nix @@ -37,7 +37,10 @@ let lib.attrNames ( lib.filterAttrs ( name: value: - isPythonInterpreter name && name != pname && interpreterName name == interpreterName pname + # use tryEval to handle entries in aliases.nix + (builtins.tryEval ( + isPythonInterpreter name && name != pname && interpreterName name == interpreterName pname + )).value ) pkgs );