From f40c50966574298066d4a16b54053affd15bfda1 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Wed, 18 Jun 2025 12:36:22 +0100 Subject: [PATCH] vectorcode: add python passthru This allows accessing the overridden chromadb in the overridden python instance. --- pkgs/by-name/ve/vectorcode/package.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/by-name/ve/vectorcode/package.nix b/pkgs/by-name/ve/vectorcode/package.nix index 6113bfa084ca..ca61d11be394 100644 --- a/pkgs/by-name/ve/vectorcode/package.nix +++ b/pkgs/by-name/ve/vectorcode/package.nix @@ -148,6 +148,12 @@ python.pkgs.buildPythonApplication rec { "test_supported_rerankers_initialization" ]; + passthru = { + # Expose these overridden inputs for debugging + inherit python; + inherit (python.pkgs) chromadb; + }; + meta = { description = "Code repository indexing tool to supercharge your LLM experience"; homepage = "https://github.com/Davidyz/VectorCode";