guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit c50563d89ac13dff57170001d085dd83d65135fc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jun 12 10:27:06 2025 +0100
gnu: go-github-com-42wim-httpsig: Update to 1.2.3.
* gnu/packages/golang-web.scm (go-github-com-42wim-httpsig): Update to
1.2.3.
[arguments] <test-flags>: Skip one failing test.
Change-Id: I55796befe2ba2add383d79269b821e14e3f7cb56
---
gnu/packages/golang-web.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 280ff1e907..d105a53012 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -362,7 +362,7 @@ Gemini clients and servers.")
(define-public go-github-com-42wim-httpsig
(package
(name "go-github-com-42wim-httpsig")
- (version "1.2.2")
+ (version "1.2.3")
(source
(origin
(method git-fetch)
@@ -371,11 +371,14 @@ Gemini clients and servers.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0r6q3g0ghccnvqsw7g3g18s710q8haq5vzpvhrb48vmbcj0pdyn8"))))
+ (base32 "1526ck0d32qjc6xkfi6s5wj241r9slng596w9slnpska5vazddv2"))))
(build-system go-build-system)
(arguments
(list
- #:import-path "github.com/42wim/httpsig"))
+ #:import-path "github.com/42wim/httpsig"
+ ;; algorithms_test.go:623: "rsa_SHA3_224": expected error, got:
+ ;; %!s(<nil>)
+ #:test-flags #~(list "-skip" "TestSignerSigns")))
(propagated-inputs (list go-golang-org-x-crypto))
(home-page "https://github.com/42wim/httpsig")
(synopsis "Golang implementation of the HTTP Signatures RFC draft")