From 045b792c15f3e367d31f12687f6e7886f3ede2e1 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 21 Sep 2025 18:45:41 +0100 Subject: [PATCH] gnu: python-cbor: Disable tests. * gnu/packages/serialization.scm (python-cbor)[arguments] : Tests are broken. [native-inputs]: Remove python-wheel. Change-Id: I58ba2aa44cf3f07028ad352a064038484fb7c517 --- gnu/packages/serialization.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index 26853d1b3d1..b7623470127 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 . + #: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