guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 1b3900b3170d8c8acf0eb080b8d31960c445b0a6
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Aug 12 23:37:20 2025 +0200
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 <[email protected]>
---
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 996f039309..e448e68090 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")