From 1b3900b3170d8c8acf0eb080b8d31960c445b0a6 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Tue, 12 Aug 2025 23:37:20 +0200 Subject: [PATCH] gnu: python-pycups: Update to 2.0.4. * gnu/packages/cups.scm (python-pycups): Update to 2.0.4. [arguments]: Refresh comment. Change-Id: I411b6478790872d8531a8617e3f3cc46f5a09fe0 Signed-off-by: Sharlatan Hellseher --- gnu/packages/cups.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index 996f03930912070bcff240c6a0d1013a1be9ce6a..e448e680904d3bcdc6ff0d73a9a37cfea030a027 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -1080,7 +1080,7 @@ obtained and installed separately.") (define-public python-pycups (package (name "python-pycups") - (version "2.0.1") + (version "2.0.4") (source (origin (method git-fetch) @@ -1089,11 +1089,13 @@ obtained and installed separately.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0x2f48gz9wpmcdjh6dj0kmciil57cm89hp4kcsnvhmkvpwpm3b55")))) + (base32 "1fx2b04wr9mv87lxk8jpglkyaqwj7bhlj6hnai0dji3jm503dqlb")))) (build-system pyproject-build-system) (arguments - '(;; Tests require CUPS to be running - #:tests? #f)) + (list + ;; XXX: Tests require CUPS to be running, a cups configuration, and + ;; access to associated printers. + #:tests? #f)) (inputs (list cups)) (native-inputs (list python-setuptools python-wheel)) (home-page "https://github.com/zdohnal/pycups")