nixpkgs/pkgs/development/python-modules/qdrant-client/default.nix
2023-09-19 14:35:47 +00:00

72 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.5.4";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "qdrant";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-9aZBUrGCNRQjYRF1QmIwVqeT5Tdgv7CCkyOUsbZbmVM=";
};
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 ];
};
}