nixpkgs/pkgs/development/python-modules/openllm-client/default.nix
Sergei Trofimovich 7a851d2593 python3Packages.openllm-client: fix optional-dependencies attribute
Without the change `python3Packages.openllm-client.optional-dependencies.full`
always fails to evaluate as:

    $ nix build --no-link -f. python3Packages.openllm-client.optional-dependencies.full
    error:
       error: attribute 'agents' missing
           49|       soundfile
           50|     ] ++ transformers.agents;
             |          ^
           51|     full = passthru.optional-dependencies.grpc ++ passthru.optional-dependencies.agents;

As `transformers` never exposed `agents` let's just drop the reference.
2023-12-30 19:29:02 +00:00

67 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 ];
};
}