Unverified Commit 9dfdbeb0 authored by Matthias Beyer's avatar Matthias Beyer Committed by GitHub
Browse files

Merge pull request #251187 from natsukium/cohere/update

python310Packages.cohere: 4.16.0 -> 4.21
parents 1810789d d3ad6cd9
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -5,20 +5,21 @@
, pythonOlder
, aiohttp
, backoff
, fastavro
, importlib-metadata
, requests
}:

buildPythonPackage rec {
  pname = "cohere";
  version = "4.16.0";
  version = "4.21";
  format = "pyproject";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-i6kbjugulAcmmInFb+rH4WB50dM7SDO1HNW/JgD4OTQ=";
    hash = "sha256-9hFDj0Cd/F1aChU6WFNJ9agLFpxxArWZTZmZ7PhECGY=";
  };

  nativeBuildInputs = [
@@ -28,6 +29,7 @@ buildPythonPackage rec {
  propagatedBuildInputs = [
    aiohttp
    backoff
    fastavro
    importlib-metadata
    requests
  ];