diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-28 07:37:58 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:48 +0100 |
| commit | ef1c4a8912c8b5c1f7dd5c17856e94e765a9a512 (patch) | |
| tree | 2efe6cd408fea0a3203235d051b6bbb0e5542c89 /gnu/packages/graphics.scm | |
| parent | 54c83ed38a66672d402d81803f42fe82f9aa9630 (diff) | |
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/graphics.scm')
| -rw-r--r-- | gnu/packages/graphics.scm | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index e8ce191c922..ebe53cd3f5e 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 |
