summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2025-09-26 21:52:46 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2025-09-30 16:48:23 +0900
commit050ec090e8227cd25d5fa88a580340cab40f5dce (patch)
tree5826778e2cf3dd645d8d698c4b7008f297b70392 /gnu
parent8389fd89d23b3e48f0e504b3dd98272b82b92b3e (diff)
gnu: python-booleanoperations: Update to 0.9.0.
* gnu/packages/graphics.scm (python-booleanoperations): Update to 0.9.0. [#:modules, #:test-flags]: New arguments. [native-inputs]: Delete unzip. Change-Id: If4c4f36545f90b8d76d1a6a8c214aeaaa0841a58
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/graphics.scm25
1 files changed, 20 insertions, 5 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
index 584949e57bf..6ddab265f2c 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -21,7 +21,7 @@
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
;;; Copyright © 2020, 2021, 2025 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
-;;; Copyright © 2020-2024 Maxim Cournoyer <maxim@guixotic.coop>
+;;; Copyright © 2020-2025 Maxim Cournoyer <maxim@guixotic.coop>
;;; Copyright © 2020 Gabriel Arazas <foo.dogsquared@gmail.com>
;;; Copyright © 2021 Antoine Côté <antoine.cote@posteo.net>
;;; Copyright © 2021 Andy Tai <atai@atai.org>
@@ -1238,14 +1238,30 @@ basic geometries.")
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/typemytype/booleanOperations")
- (commit version)))
+ (url "https://github.com/typemytype/booleanOperations")
+ (commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0ahfgamyq1ndwbr9n8sdx8qhqc2195xnbahylgjpk877hbr2gxav"))))
(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")))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'set-version
@@ -1257,8 +1273,7 @@ basic geometries.")
python-fontpens-bootstrap
python-pytest
python-setuptools
- python-setuptools-scm
- unzip))
+ python-setuptools-scm))
(home-page "https://github.com/typemytype/booleanOperations")
(synopsis "Boolean operations on paths")
(description