From f63ae38014c9e31c4e0e1e3a41e0987e56a8f67b Mon Sep 17 00:00:00 2001 From: happysalada Date: Mon, 5 Feb 2024 18:54:48 -0500 Subject: [PATCH] python311Packages.litellm: use pyproject = true --- pkgs/development/python-modules/litellm/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/litellm/default.nix b/pkgs/development/python-modules/litellm/default.nix index f3ec6b82d9ca..6d2905206a7a 100644 --- a/pkgs/development/python-modules/litellm/default.nix +++ b/pkgs/development/python-modules/litellm/default.nix @@ -12,15 +12,14 @@ , certifi , appdirs , aiohttp -, httpx }: let version = "1.22.3"; in -buildPythonPackage rec { +buildPythonPackage { pname = "litellm"; - format = "pyproject"; inherit version; + pyproject = true; src = fetchFromGitHub { owner = "BerriAI";