guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit d7bf6d562cbfc4fbe4fe153801c246a121d5315a
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 e8ce191c92..ebe53cd3f5 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -1226,22 +1226,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