guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 870cedddde9f1211db3817fcfb52a13104f70712
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Feb 5 00:37:07 2026 +0100

    gnu: python-woob: Relax requirements.
    
    * gnu/packages/python-web.scm (python-woob)[arguments]<#:phases>: Add
    phase 'relax-requirements.
    
    Change-Id: Ib178d637ef1658702099ecd1c0fca570128970ed
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-web.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index f7c5290862..22ed68c6ba 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -12316,10 +12316,13 @@ can be handled by the @code{colorsys} module in the 
Python standard library.")
       #~(modify-phases %standard-phases
           (add-before 'build 'relax-requirements
             (lambda _
-              ;; "packaging ~= 23.0",
               (substitute* "pyproject.toml"
+                ;; packaging ~= 23.0
                 (("\"packaging .*\",")
-                 "")))))))
+                 "")
+                ;; rich~=13.0
+                (("\"rich .*\",")
+                 "\"rich\",")))))))
     (native-inputs
      (list nss-certs-for-test
            python-pytest

Reply via email to