From db960bc85325fc26f6d60c0a6c233ec5aed0ef0c Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 31 Oct 2025 17:43:21 +0000 Subject: [PATCH] gnu: greaseweazle-host-tools: Disable tests. * gnu/packages/disk.scm (greaseweazle-host-tools)[arguments] : Disable for now. [native-inputs]: Remove python-wheel. Change-Id: Icd1d43243e26a52468604860bf5bd458183d1c82 --- gnu/packages/disk.scm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 0042c5d6891a256a5fa7f0ede3905b245e676e0d..ec66d25b428b3ed2d6e34bdb3e07dcb285555836 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -856,20 +856,19 @@ and can dramatically shorten the lifespan of the drive if left unchecked.") (build-system python-build-system) (arguments (list + #:tests? #f ;XXX: root access is required, see: #:phases #~(modify-phases %standard-phases (add-before 'build 'setuptools-version (lambda _ - (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" "1.8"))) + (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version))) (add-after 'install 'install-udev-rules (lambda _ (install-file "scripts/49-greaseweazle.rules" (string-append #$output "/lib/udev/rules.d/"))))))) (native-inputs - (list - python-setuptools - python-setuptools-scm - python-wheel)) + (list python-setuptools + python-setuptools-scm)) (propagated-inputs (list python-bitarray python-crcmod python-pyserial python-requests)) (synopsis "Tools for accessing a floppy drive at the raw flux level")