summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-21 18:45:41 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-21 18:45:47 +0100
commit045b792c15f3e367d31f12687f6e7886f3ede2e1 (patch)
treed8ada8c262fbe83e84abd8a2803fe07d013d756b
parent0e34f6146a0a9d953bde7f390ac3185cc5e16cbe (diff)
gnu: python-cbor: Disable tests.
* gnu/packages/serialization.scm (python-cbor)[arguments] <tests?>: Tests are broken. [native-inputs]: Remove python-wheel. Change-Id: I58ba2aa44cf3f07028ad352a064038484fb7c517
-rw-r--r--gnu/packages/serialization.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 26853d1b3d..b762347012 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -896,9 +896,12 @@ validates a restricted subset of the YAML specification.")
(base32
"1dmv163cnslyqccrybkxn0c9s1jk1mmafmgxv75iamnz5lk5l8hk"))))
(build-system pyproject-build-system)
+ (arguments
+ (list
+ ;; Tests are broken upstrea, see <https://github.com/brianolson/cbor_py/issues/6>.
+ #:tests? #f))
(native-inputs
- (list python-setuptools
- python-wheel))
+ (list python-setuptools))
(home-page "https://github.com/brianolson/cbor_py")
(synopsis "Implementation of the Concise Binary Object Representation")
(description