c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
71 lines
1.3 KiB
Nix
71 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, grpcio
|
|
, grpcio-tools
|
|
, httpx
|
|
, numpy
|
|
, pytestCheckHook
|
|
, poetry-core
|
|
, pydantic
|
|
, pythonOlder
|
|
, urllib3
|
|
, portalocker
|
|
, fastembed
|
|
# check inputs
|
|
, pytest-asyncio
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "qdrant-client";
|
|
version = "1.7.3";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "qdrant";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-VU2/kK7zpiuHbPtt1Qh8pdgen4KoIIKsyC479LATO84=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
httpx
|
|
grpcio
|
|
# typing-extensions
|
|
grpcio-tools
|
|
pydantic
|
|
urllib3
|
|
portalocker
|
|
] ++ httpx.optional-dependencies.http2;
|
|
|
|
pythonImportsCheck = [
|
|
"qdrant_client"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-asyncio
|
|
];
|
|
|
|
# tests require network access
|
|
doCheck = false;
|
|
|
|
passthru.optional-dependencies = {
|
|
fastembed = [ fastembed ];
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Python client for Qdrant vector search engine";
|
|
homepage = "https://github.com/qdrant/qdrant-client";
|
|
changelog = "https://github.com/qdrant/qdrant-client/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
};
|
|
}
|