python310Packages.openllm-client: init at 0.2.27

This commit is contained in:
natsukium
2023-09-03 10:11:14 -04:00
committed by Yt
parent 89be295e69
commit 04ce30e627
2 changed files with 60 additions and 0 deletions
@@ -0,0 +1,58 @@
{ lib
, buildPythonPackage
, pythonOlder
, bentoml
, hatch-fancy-pypi-readme
, hatch-vcs
, hatchling
, httpx
, openllm-core
, soundfile
, transformers
}:
buildPythonPackage rec {
inherit (openllm-core) src version;
pname = "openllm-client";
format = "pyproject";
disabled = pythonOlder "3.8";
sourceRoot = "source/openllm-client";
nativeBuildInputs = [
hatch-fancy-pypi-readme
hatch-vcs
hatchling
];
propagatedBuildInputs = [
httpx
openllm-core
];
passthru.optional-dependencies = {
grpc = [
bentoml
] ++ bentoml.optional-dependencies.grpc;
agents = [
transformers
# diffusers
soundfile
] ++ transformers.agents;
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 ];
};
}
+2
View File
@@ -4014,6 +4014,8 @@ self: super: with self; {
inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices OpenGL;
};
openllm-client = callPackage ../development/python-modules/openllm-client { };
openllm-core = callPackage ../development/python-modules/openllm-core { };
openstep-plist = callPackage ../development/python-modules/openstep-plist { };