1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 hatchling, 6 llama-index-core, 7 pymilvus, 8}: 9 10buildPythonPackage rec { 11 pname = "llama-index-vector-stores-milvus"; 12 version = "0.9.2"; 13 pyproject = true; 14 15 src = fetchPypi { 16 pname = "llama_index_vector_stores_milvus"; 17 inherit version; 18 hash = "sha256-qIGFmmiet1VXkQLyy72l2ub5ePyYwozTzisVhQkWmoY="; 19 }; 20 21 build-system = [ hatchling ]; 22 23 dependencies = [ 24 llama-index-core 25 pymilvus 26 ]; 27 28 pythonImportsCheck = [ "llama_index.vector_stores.milvus" ]; 29 30 # Module has no tests 31 doCheck = false; 32 33 meta = { 34 description = "Llama-index vector_stores milvus integration"; 35 homepage = "https://pypi.org/project/llama-index-vector-stores-milvus/"; 36 license = lib.licenses.mit; 37 maintainers = with lib.maintainers; [ fab ]; 38 }; 39}