mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
doc: fix pypy39 removal
This commit is contained in:
parent
844f2a5fff
commit
59725b22ae
1 changed files with 4 additions and 1 deletions
|
@ -37,7 +37,10 @@ let
|
||||||
lib.attrNames (
|
lib.attrNames (
|
||||||
lib.filterAttrs (
|
lib.filterAttrs (
|
||||||
name: value:
|
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
|
) pkgs
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue