summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-08-12 23:37:20 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-08-14 13:15:25 +0100
commit1b3900b3170d8c8acf0eb080b8d31960c445b0a6 (patch)
tree7cbaf2076ca3828e5fc6d436515b57f1a937853b
parentbff730995a0e6b1a780159ec0b259d052f7115db (diff)
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 <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/cups.scm10
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm
index 996f0393091..e448e680904 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")