Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
307 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{ python3Packages }:
let
litellm = python3Packages.litellm;
in
python3Packages.toPythonApplication (
litellm.overridePythonAttrs (oldAttrs: {
dependencies =
(oldAttrs.dependencies or [ ])
++ litellm.optional-dependencies.proxy
++ litellm.optional-dependencies.extra_proxy;
})
)