mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
67 lines
1.2 KiB
Nix
67 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fastembed,
|
|
fetchFromGitHub,
|
|
grpcio,
|
|
grpcio-tools,
|
|
httpx,
|
|
numpy,
|
|
poetry-core,
|
|
portalocker,
|
|
pydantic,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
urllib3,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "qdrant-client";
|
|
version = "1.11.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "qdrant";
|
|
repo = "qdrant-client";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-1tBlWwD2GaphwupWUWRYwYrqGV9cTfG4k1L9N5mub/Q=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
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 = 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 ];
|
|
};
|
|
}
|