Unverified Commit 56b12300 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.litellm: 1.82.3 -> 1.83.7 (#512630)

parents d3f8637a 7c5d06de
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
@@ -50,14 +50,14 @@

buildPythonPackage rec {
  pname = "litellm";
  version = "1.82.3";
  version = "1.83.7";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "BerriAI";
    repo = "litellm";
    tag = "v${version}-stable";
    hash = "sha256-oeaK8Flt/oSX9nA7tFHyBp+hvsDeRK+w16zljyA9vdE=";
    hash = "sha256-oVQ0FHZmXDY7HU4AMEQ9xcl10mIbqja9/j2mdunTWI4=";
  };

  build-system = [ poetry-core ];
@@ -122,8 +122,14 @@ buildPythonPackage rec {
    "litellm_enterprise"
  ];

  # Relax dependency check on openai, may not be needed in the future
  pythonRelaxDeps = [ "openai" ];
  pythonRelaxDeps = [
    "aiohttp"
    "click"
    "importlib-metadata"
    "jsonschema"
    "openai"
    "python-dotenv"
  ];

  # access network
  doCheck = false;