1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
{
lib,
buildPythonPackage,
fastembed,
fetchFromGitHub,
grpcio,
grpcio-tools,
httpx,
numpy,
poetry-core,
portalocker,
pydantic,
pytest-asyncio,
pytestCheckHook,
urllib3,
}:
buildPythonPackage rec {
pname = "qdrant-client";
version = "1.16.2";
pyproject = true;
src = fetchFromGitHub {
owner = "qdrant";
repo = "qdrant-client";
tag = "v${version}";
hash = "sha256-sOZDQmwiTz3lZ1lR0xJDxMmNc5QauWLJV5Ida2INibY=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [
"portalocker"
];
dependencies = [
grpcio
grpcio-tools
httpx
numpy
portalocker
pydantic
urllib3
]
++ httpx.optional-dependencies.http2;
pythonImportsCheck = [ "qdrant_client" ];
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
];
# Tests require network access
doCheck = false;
optional-dependencies = {
fastembed = [ fastembed ];
};
meta = {
description = "Python client for Qdrant vector search engine";
homepage = "https://github.com/qdrant/qdrant-client";
changelog = "https://github.com/qdrant/qdrant-client/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ happysalada ];
};
}
|