From d5dce9e8f4062a0c6902a4aa952f453c16179a92 Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Mon, 10 Nov 2025 16:10:08 -0500 Subject: [PATCH] python3Packages.openai: 2.6.0 -> 2.7.2 Diff: https://github.com/openai/openai-python/compare/v2.6.0...v2.7.2 Changelog: https://github.com/openai/openai-python/blob/v2.7.2/CHANGELOG.md --- pkgs/development/python-modules/openai/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/openai/default.nix b/pkgs/development/python-modules/openai/default.nix index c1f9d59eea50..7c021dfe81d5 100644 --- a/pkgs/development/python-modules/openai/default.nix +++ b/pkgs/development/python-modules/openai/default.nix @@ -51,14 +51,14 @@ buildPythonPackage rec { pname = "openai"; - version = "2.6.0"; + version = "2.7.2"; pyproject = true; src = fetchFromGitHub { owner = "openai"; repo = "openai-python"; tag = "v${version}"; - hash = "sha256-GD9+81r0vw4n5jdpJW72cmtfqfz7zGs01YuwiziC3h4="; + hash = "sha256-g7YbKzRZQOM4e16Mgo7u3QoQQI6VTNrV4DUip9fYsLA="; }; postPatch = ''substituteInPlace pyproject.toml --replace-fail "hatchling==1.26.3" "hatchling"'';