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

commit deab2272befbdc5ab3d77c5b0b656100c0ebfcd7
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jan 28 07:37:58 2026 +0100

    gnu: python-booleanoperations: Improve style.
    
    * gnu/packages/graphics.scm (python-booleanoperations)[arguments]
    <#:modules>: Remove them.
    <#:test-flags>: Use string-join rather than format.
    
    Change-Id: I9f80d1c8ba0c0cb40d87f4ab71a68db3435623e9
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/graphics.scm | 26 ++++++++++++--------------
 1 file changed, 12 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
index 5294cb7393..7eb0f13869 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -1224,22 +1224,20 @@ basic geometries.")
     (build-system pyproject-build-system)
     (arguments
      (list
-      ;; There are
-      #:modules '((guix build pyproject-build-system)
-                  (guix build utils)
-                  (ice-9 format))
       ;; Some tests fail due to small differences in the expected result (see:
       ;; <https://github.com/typemytype/booleanOperations/issues/69>).
-      #:test-flags #~(list "-k"
-                           (format #f "not ~{~a~^ and not ~}"
-                                   '("test_QTail_reversed_difference"
-                                     "test_QTail_reversed_intersection"
-                                     "test_QTail_reversed_union"
-                                     "test_QTail_reversed_xor"
-                                     "test_Q_difference"
-                                     "test_Q_intersection"
-                                     "test_Q_union"
-                                     "test_Q_xor")))))
+      #:test-flags
+      #~(list "-k"
+              (string-join
+               (list "not test_QTail_reversed_difference"
+                     "test_QTail_reversed_intersection"
+                     "test_QTail_reversed_union"
+                     "test_QTail_reversed_xor"
+                     "test_Q_difference"
+                     "test_Q_intersection"
+                     "test_Q_union"
+                     "test_Q_xor")
+               " and not "))))
     (propagated-inputs (list python-fonttools-minimal python-pyclipper))
     (native-inputs
      (list python-defcon-bootstrap

Reply via email to