python313Packages.llama-index-vector-stores-milvus: init at 0.9.1

Llama-index vector_stores milvus integration

https://pypi.org/project/llama-index-vector-stores-milvus/
This commit is contained in:
Fabian Affolter
2025-09-07 21:52:01 +02:00
parent 838e1e480d
commit 533ea25b00
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,39 @@
{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
llama-index-core,
pymilvus,
}:
buildPythonPackage rec {
pname = "llama-index-vector-stores-milvus";
version = "0.9.1";
pyproject = true;
src = fetchPypi {
pname = "llama_index_vector_stores_milvus";
inherit version;
hash = "sha256-8alWmT1CglPpvDqbav7AoahIOcabchsiUmrAbBeOyZI=";
};
build-system = [ hatchling ];
dependencies = [
llama-index-core
pymilvus
];
pythonImportsCheck = [ "llama_index.vector_stores.milvus" ];
# Module has no tests
doCheck = false;
meta = {
description = "Llama-index vector_stores milvus integration";
homepage = "https://pypi.org/project/llama-index-vector-stores-milvus/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
+4
View File
@@ -8588,6 +8588,10 @@ self: super: with self; {
callPackage ../development/python-modules/llama-index-vector-stores-google
{ };
llama-index-vector-stores-milvus =
callPackage ../development/python-modules/llama-index-vector-stores-milvus
{ };
llama-index-vector-stores-postgres =
callPackage ../development/python-modules/llama-index-vector-stores-postgres
{ };