python3Packages.litellm: 1.83.14 -> 1.86.0 (#523540)

This commit is contained in:
Yt
2026-05-24 22:39:34 +00:00
committed by GitHub
@@ -43,7 +43,6 @@
python-dotenv,
python-multipart,
pyyaml,
requests,
resend,
restrictedpython,
rich,
@@ -62,19 +61,19 @@
buildPythonPackage rec {
pname = "litellm";
version = "1.83.14";
version = "1.86.0";
pyproject = true;
src = fetchFromGitHub {
owner = "BerriAI";
repo = "litellm";
tag = "v${version}-stable";
hash = "sha256-SZow0qof9DRlohWjT3J/NHtmhe96OLLcdHt55RQ7Zmw=";
tag = "v${version}";
hash = "sha256-uInjKBUduDAfXHg5dQj5/qqqMJhlDeTri1kULkz5unM=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "uv_build==0.10.7" "uv_build"
--replace-fail "uv_build==0.11.8" "uv_build"
'';
build-system = [ uv-build ];
@@ -90,7 +89,6 @@ buildPythonPackage rec {
openai
pydantic
python-dotenv
requests
tiktoken
tokenizers
];
@@ -175,7 +173,7 @@ buildPythonPackage rec {
updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"v([0-9]+\\.[0-9]+\\.[0-9]+)-stable"
"v([0-9]+\\.[0-9]+\\.[0-9]+)"
];
};
};