From d3ad6cd986872d1f2bd5d3891c55b4cc3b7ff0bd Mon Sep 17 00:00:00 2001 From: natsukium Date: Thu, 24 Aug 2023 23:43:29 +0900 Subject: [PATCH] python310Packages.cohere: 4.16.0 -> 4.21 Changelog: https://github.com/cohere-ai/cohere-python/blob/main/CHANGELOG.md#421 --- pkgs/development/python-modules/cohere/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cohere/default.nix b/pkgs/development/python-modules/cohere/default.nix index dddb7e892e0c..34df37e4db9f 100644 --- a/pkgs/development/python-modules/cohere/default.nix +++ b/pkgs/development/python-modules/cohere/default.nix @@ -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 ];