0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

python311Packages.litellm: use pyproject = true

This commit is contained in:
happysalada 2024-02-05 18:54:48 -05:00
parent 6fde7581b3
commit f63ae38014

View file

@ -12,15 +12,14 @@
, certifi , certifi
, appdirs , appdirs
, aiohttp , aiohttp
, httpx
}: }:
let let
version = "1.22.3"; version = "1.22.3";
in in
buildPythonPackage rec { buildPythonPackage {
pname = "litellm"; pname = "litellm";
format = "pyproject";
inherit version; inherit version;
pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "BerriAI"; owner = "BerriAI";