aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-04-06 14:37:14 +0200
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:31 +0200
commit3c62e5b2bd2aa47f8779dac2b1f798cd54814fe4 (patch)
treec5e97c636785e0dc95ad42407436b257ca12fdcc
parentea99274af37eecda72923ec998e5917652bc3a49 (diff)
downloadguix-3c62e5b2bd2aa47f8779dac2b1f798cd54814fe4.tar.gz
guix-3c62e5b2bd2aa47f8779dac2b1f798cd54814fe4.zip
gnu: python-authheaders: Update to 0.16.3.
* gnu/packages/mail.scm (python-authheaders): Update to 0.16.3. [build-system]: Switch to pyproject. [native-inputs]: Add python-setuptools, python-wheel. Change-Id: I65a81f7f65d252af678f64be16b4eb66e9657f43 Signed-off-by: Steve George <steve@futurile.net>
-rw-r--r--gnu/packages/mail.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index f29213c024..67c36e25cf 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -4681,18 +4681,20 @@ the RFC 8617 Authenticated Received Chain (ARC) protocol.")
(define-public python-authheaders
(package
(name "python-authheaders")
- (version "0.13.0")
+ (version "0.16.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "authheaders" version))
(sha256
(base32
- "14k6i72k5f8dyvps8vc0aq0cczc8lvqpgjfjzsy6qqychjvjcmwk"))))
- (build-system python-build-system)
+ "12hl93336w64iyqalpv4rma2ijigav68qy1xmgziibdi7inxr3hi"))))
+ (build-system pyproject-build-system)
(propagated-inputs
(list python-authres python-dkimpy python-dnspython
python-publicsuffix2))
+ (native-inputs
+ (list python-setuptools python-wheel))
(home-page "https://github.com/ValiMail/authentication-headers")
(synopsis "Library wrapping email authentication header verification and generation")
(description