504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
66 lines
1.3 KiB
Nix
66 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, bentoml
|
|
, hatch-fancy-pypi-readme
|
|
, hatch-vcs
|
|
, hatchling
|
|
, anyio
|
|
, distro
|
|
, httpx
|
|
, httpx-auth
|
|
, openllm-core
|
|
, soundfile
|
|
, transformers
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
inherit (openllm-core) src version;
|
|
pname = "openllm-client";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
sourceRoot = "source/openllm-client";
|
|
|
|
nativeBuildInputs = [
|
|
hatch-fancy-pypi-readme
|
|
hatch-vcs
|
|
hatchling
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
anyio
|
|
distro
|
|
httpx
|
|
openllm-core
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
grpc = [
|
|
bentoml
|
|
] ++ bentoml.optional-dependencies.grpc;
|
|
auth = [
|
|
httpx-auth
|
|
];
|
|
agents = [
|
|
transformers
|
|
# diffusers
|
|
soundfile
|
|
];
|
|
full = passthru.optional-dependencies.grpc ++ passthru.optional-dependencies.agents;
|
|
};
|
|
|
|
# there is no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "openllm_client" ];
|
|
|
|
meta = with lib; {
|
|
description = "Interacting with OpenLLM HTTP/gRPC server, or any BentoML server";
|
|
homepage = "https://github.com/bentoml/OpenLLM/tree/main/openllm-client";
|
|
changelog = "https://github.com/bentoml/OpenLLM/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ natsukium ];
|
|
};
|
|
}
|