summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorJanneke Nieuwenhuizen <[email protected]>2023-09-14 23:12:23 +0200
committerJanneke Nieuwenhuizen <[email protected]>2023-09-14 23:52:37 +0200
commit0c1aa354048f82023e6d2043bfecc4fd58bc9b58 (patch)
treec9a89519c6d7d88925a6aaf265b339e3cc2bd629 /gnu/packages/python-xyz.scm
parent1d5f1a5462491bf877999525466fb83c55e7e66d (diff)
gnu: python-cython: Support building on the Hurd.
* gnu/packages/python-xyz.scm (python-cython)[arguments]: In phase `check', skip failing tests on the Hurd.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm6
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index dd43fb3cd1..2230310a03 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -142,6 +142,7 @@
;;; Copyright © 2023 Parnikkapore <[email protected]>
;;; Copyright © 2023 Foundation Devices, Inc. <[email protected]>
;;; Copyright © c4droid <[email protected]>
+;;; Copyright © 2023 Janneke Nieuwenhuizen <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -7129,6 +7130,11 @@ provides additional functionality on the produced Mallard documents.")
,@(if (not (target-64bit?))
'("-x" "run.parallel")
'())
+ ,@(if (system-hurd?)
+ '("-x" "test_class_ref"
+ "-x" "test_compiler_directives"
+ "-x" "test_lang_version")
+ '())
;; This test fails when running on 24 cores.
"-x" "cpp_stl_conversion")))))))
(home-page "https://cython.org/")