From f48a6f6659a5b698c09998cde850027f1e8531a4 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Tue, 8 Oct 2024 22:45:06 -0500 Subject: [PATCH] vimPlugins.chadtree: add python3 dependency and check --- pkgs/applications/editors/vim/plugins/overrides.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index c29ec00ed2bc4b9..96ee6beeddc75dd 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -213,6 +213,9 @@ in }; chadtree = super.chadtree.overrideAttrs { + buildInputs = [ + python3 + ]; passthru.python3Dependencies = ps: with ps; [ pynvim-pp @@ -222,6 +225,7 @@ in # We need some patches so it stops complaining about not being in a venv patches = [ ./patches/chadtree/emulate-venv.patch ]; + nvimRequireCheck = "chadtree"; }; ChatGPT-nvim = super.ChatGPT-nvim.overrideAttrs {