From 3ade65425772e5ee25989726b41074fcb4a9a372 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Fri, 7 Mar 2025 13:50:10 -0600 Subject: [PATCH] tests/neovide: fix deprecation --- tests/modules/programs/neovim/runtime.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/modules/programs/neovim/runtime.nix b/tests/modules/programs/neovim/runtime.nix index 61ec8b9b6..088f75ace 100644 --- a/tests/modules/programs/neovim/runtime.nix +++ b/tests/modules/programs/neovim/runtime.nix @@ -34,8 +34,8 @@ lib.mkIf config.test.enableBig { extraLuaPackages = ps: with ps; [ luacheck ]; } { - extraPython3Packages = with pkgs.python3Packages; [ jedi pynvim ]; - extraLuaPackages = with pkgs.lua51Packages; [ luacheck ]; + extraPython3Packages = ps: with ps; [ jedi pynvim ]; + extraLuaPackages = ps: with ps; [ luacheck ]; } ];