File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed
pkgs/by-name/ve/vectorcode Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 9393in
9494python . pkgs . buildPythonApplication rec {
9595 pname = "vectorcode" ;
96- version = "0.7.7 " ;
96+ version = "0.7.14 " ;
9797 pyproject = true ;
9898
9999 src = fetchFromGitHub {
100100 owner = "Davidyz" ;
101101 repo = "VectorCode" ;
102102 tag = version ;
103- hash = "sha256-c8Wp/bP5KHDN/i2bMyiOQgnHDw8tPbg4IZIQ5Ut4SIo =" ;
103+ hash = "sha256-jzNeAsL4kMGRhD9MftOL1UrM7GX8AYCab+nosptsqLY =" ;
104104 } ;
105105
106106 build-system = with python . pkgs ; [
@@ -109,6 +109,7 @@ python.pkgs.buildPythonApplication rec {
109109
110110 pythonRelaxDeps = [
111111 "posthog"
112+ "wheel"
112113 ] ;
113114 dependencies =
114115 with python . pkgs ;
@@ -176,15 +177,28 @@ python.pkgs.buildPythonApplication rec {
176177 ++ ( with python . pkgs ; [
177178 mcp
178179 pygls
180+ pytest-asyncio
179181 pytestCheckHook
180182 ] ) ;
181183 versionCheckProgramArg = "version" ;
182184
183185 disabledTests = [
184186 # Require internet access
187+ "test_chunked_add"
188+ "test_chunked_add_empty_file"
189+ "test_chunked_add_truncated"
190+ "test_chunked_add_update_existing"
191+ "test_chunked_add_with_existing"
185192 "test_get_embedding_function"
186193 "test_get_embedding_function_fallback"
194+ "test_get_query_reranker_initialisation_error"
195+ "test_get_query_result_chunks_with_query_exclude"
196+ "test_get_query_result_files_include_chunk"
197+ "test_get_query_result_files_multiple_queries"
198+ "test_get_query_result_files_query_error"
199+ "test_get_query_result_files_with_query_exclude"
187200 "test_get_reranker"
201+ "test_query_tool_success"
188202 "test_supported_rerankers_initialization"
189203 ] ;
190204
You can’t perform that action at this time.
0 commit comments