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-03-16 11:04:18 +01: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;
})
)