From 8857888b9f50b5f04808021c7a382aa94bf336c9 Mon Sep 17 00:00:00 2001 From: Hobr Date: Tue, 21 Jul 2026 21:51:39 +0800 Subject: [PATCH] python3Packages.pyiceberg: relax cachetools dependency --- pkgs/development/python-modules/pyiceberg/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/pyiceberg/default.nix b/pkgs/development/python-modules/pyiceberg/default.nix index bbe20d0dd4b3..48a61de54ec9 100644 --- a/pkgs/development/python-modules/pyiceberg/default.nix +++ b/pkgs/development/python-modules/pyiceberg/default.nix @@ -80,6 +80,8 @@ buildPythonPackage (finalAttrs: { env.CIBUILDWHEEL = "1"; pythonRelaxDeps = [ + # cachetools<7.0,>=5.5 not satisfied by version 7.1.4 + "cachetools" # rich<15.0.0,>=10.11.0 not satisfied by version 15.0.0 "rich" ];