From 78e740786e1c2636de166e54ad313f003ae2ba40 Mon Sep 17 00:00:00 2001 From: Maxwell L-T Date: Wed, 23 Apr 2025 17:49:38 -0400 Subject: [PATCH] woob: fix build by adding rich to pythonRelaxDeps As of 6c22a1c2f187b1d6fdfcdb9104aa9b8a3c8e312b, `rich` was updated to 14.0.0. This broke the woob build, which requires 13.x. The changes in `rich` 14.0.0 are minimal (https://github.com/Textualize/rich/releases/tag/v14.0.0), so this is unlikely to cause issues for woob. --- pkgs/development/python-modules/woob/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/woob/default.nix b/pkgs/development/python-modules/woob/default.nix index 41450c7e27a8..cf03a672a078 100644 --- a/pkgs/development/python-modules/woob/default.nix +++ b/pkgs/development/python-modules/woob/default.nix @@ -49,7 +49,10 @@ buildPythonPackage rec { setuptools ]; - pythonRelaxDeps = [ "packaging" ]; + pythonRelaxDeps = [ + "packaging" + "rich" + ]; propagatedBuildInputs = [ babel