vscode-extensions.github.copilot{*}: bump (#364729)
[NixPkgs.git] / pkgs / development / python-modules / llama-index-vector-stores-qdrant / default.nix
blob6f7b1003892b012346583f2c5cd9de1105f6484e
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   llama-index-core,
6   qdrant-client,
7   poetry-core,
8   grpcio,
9   pythonOlder,
12 buildPythonPackage rec {
13   pname = "llama-index-vector-stores-qdrant";
14   version = "0.4.0";
15   pyproject = true;
17   disabled = pythonOlder "3.8";
19   src = fetchPypi {
20     pname = "llama_index_vector_stores_qdrant";
21     inherit version;
22     hash = "sha256-hv6cxCSKNtjUfZYNk2oxrJi10wAL4kxZeTx3v1ejlKc=";
23   };
25   build-system = [ poetry-core ];
27   dependencies = [
28     grpcio
29     llama-index-core
30     qdrant-client
31   ];
33   pythonImportsCheck = [ "llama_index.vector_stores.qdrant" ];
35   meta = with lib; {
36     description = "LlamaIndex Vector Store Integration for Qdrant";
37     homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/vector_stores/llama-index-vector-stores-qdrant";
38     license = licenses.mit;
39     maintainers = with maintainers; [ fab ];
40   };