2025-03-16 20:48:36 +01:00

14 lines
307 B
Nix

{ python3Packages }:
let
litellm = python3Packages.litellm;
in
python3Packages.toPythonApplication (
litellm.overridePythonAttrs (oldAttrs: {
dependencies =
(oldAttrs.dependencies or [ ])
++ litellm.optional-dependencies.proxy
++ litellm.optional-dependencies.extra_proxy;
})
)