Commit 533ea25b authored by Fabian Affolter's avatar Fabian Affolter
Browse files

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/
parent 838e1e48
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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
      { };