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:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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
|
||||
{ };
|
||||
|
||||
Reference in New Issue
Block a user