python312Packages.llama-index-vector-stores-qdrant: init at 0.1.4

This commit is contained in:
Fabian Affolter 2024-03-28 15:30:28 +01:00
parent 655a28646e
commit c921298cc6
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{ lib
, buildPythonPackage
, fetchPypi
, llama-index-core
, qdrant-client
, poetry-core
, grpcio
, pythonOlder
}:
buildPythonPackage rec {
pname = "llama-index-vector-stores-qdrant";
version = "0.1.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "llama_index_vector_stores_qdrant";
inherit version;
hash = "sha256-UIiEL7ZUcGQusyhs9cFsPOZ8qxH7ouoCnQMemlho0lA=";
};
build-system = [
poetry-core
];
dependencies = [
grpcio
llama-index-core
qdrant-client
];
pythonImportsCheck = [
"llama_index.vector_stores.qdrant"
];
meta = with lib; {
description = "LlamaIndex Vector Store Integration for Qdrant";
homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/vector_stores/llama-index-vector-stores-qdrant";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -6814,6 +6814,8 @@ self: super: with self; {
llama-index-vector-stores-postgres = callPackage ../development/python-modules/llama-index-vector-stores-postgres { };
llama-index-vector-stores-qdrant = callPackage ../development/python-modules/llama-index-vector-stores-qdrant { };
llama-parse = callPackage ../development/python-modules/llama-parse { };
llamaindex-py-client = callPackage ../development/python-modules/llamaindex-py-client { };