19 buildPythonPackage rec {
20 pname = "qdrant-client";
24 disabled = pythonOlder "3.7";
26 src = fetchFromGitHub {
28 repo = "qdrant-client";
29 rev = "refs/tags/v${version}";
30 hash = "sha256-1tBlWwD2GaphwupWUWRYwYrqGV9cTfG4k1L9N5mub/Q=";
33 build-system = [ poetry-core ];
43 ] ++ httpx.optional-dependencies.http2;
45 pythonImportsCheck = [ "qdrant_client" ];
52 # Tests require network access
55 optional-dependencies = {
56 fastembed = [ fastembed ];
60 description = "Python client for Qdrant vector search engine";
61 homepage = "https://github.com/qdrant/qdrant-client";
62 changelog = "https://github.com/qdrant/qdrant-client/releases/tag/v${version}";
63 license = licenses.mit;
64 maintainers = with maintainers; [ happysalada ];