Skip to content

Commit b230fd9

Browse files
committed
Disable pip warning
1 parent eede803 commit b230fd9

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

pkgs/LazyVim.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,11 @@ in
9090
inherit neovim;
9191
pluginName = "mason";
9292
loadLazyPluginName = "mason.nvim";
93-
ignoreLines = lib.lists.optional (
93+
ignoreLines = [
94+
# FIXME: mason not finding pip3 in $PATH for some reason
95+
"WARNING pip: not available"
96+
]
97+
++ lib.lists.optional (
9498
!lib.meta.availableOn stdenv.hostPlatform julia
9599
) "WARNING julia: not available";
96100
};

pkgs/tests/mason-nvim-checkhealth.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ callPackage ./neovim-checkhealth.nix {
1212
};
1313
pluginName = "mason";
1414
loadLazyPluginName = "mason.nvim";
15-
ignoreLines = lib.lists.optional (
15+
ignoreLines = [
16+
# FIXME: mason not finding pip3 in $PATH for some reason
17+
"WARNING pip: not available"
18+
]
19+
++ lib.lists.optional (
1620
!lib.meta.availableOn stdenv.hostPlatform julia
1721
) "WARNING julia: not available";
1822
}

0 commit comments

Comments
 (0)