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

commit b57ecc55abd88da3d48ea3af61e9b30e322a1fb6
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Jan 27 17:37:02 2026 +0100

    gnu: python-csb43: Relax requirements.
    
    * gnu/packages/python-xyz.scm (python-csb43)[arguments]
    <#:phases>: Add phase 'relax-requirements.
    
    Change-Id: If4d718aeb4545fb10c80cfc506a983db66438bed
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 88354c04e2..333e5bf698 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -32818,6 +32818,15 @@ a Python program in an customizable and pythonic way.")
         (base32 "030lncdmrcvzgp8v1jw04snnplqxlwf3vikzd0a3jbk5sgrp2cih"))))
     (build-system pyproject-build-system)
     ;; tests: 15102 passed, 36 skipped, 5489 warnings
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'relax-requirements
+            (lambda _
+              (substitute* "pyproject.toml"
+                (("\"deprecated ~=.*\",")
+                 "\"deprecated\",")))))))
     (native-inputs
      (list python-lxml
            python-pytest

Reply via email to