sharlatan pushed a commit to branch go-team
in repository guix.
commit e1a9f34033e6b1aa1a1c9ea4da0690a46762e4a2
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Sep 13 12:16:40 2024 +0100
gnu: go-github-com-xeipuuv-gojsonschema: Update to 1.2.0.
* gnu/packages/golang-web.scm (go-github-com-xeipuuv-gojsonschema): Update
to 1.2.0.
[arguments]: <#:phases>: Remove 'disable-failing-tests and utilize
<#:test-flags> parameter.
Change-Id: Iafe51425325b9128a1e036f0f4eca88c91760ace
---
gnu/packages/golang-web.scm | 29 ++++++++++-------------------
1 file changed, 10 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index d0d316ceef..1ff3e31015 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -5447,35 +5447,26 @@ programming language.")
(license license:asl2.0))))
(define-public go-github-com-xeipuuv-gojsonschema
- (let ((commit "6b67b3fab74d992bd07f72550006ab2c6907c416")
- (revision "0"))
(package
(name "go-github-com-xeipuuv-gojsonschema")
- (version (git-version "0.0.0" revision commit))
+ (version "1.2.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/xeipuuv/gojsonschema")
- (commit commit)))
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1q937a6q7canlr3dllqdw0qwa6z2fpwn1w9kycavx8jmwh6q3f69"))))
+ (base32 "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l"))))
(build-system go-build-system)
(arguments
- '(#:import-path "github.com/xeipuuv/gojsonschema"
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'disable-failing-tests
- (lambda* (#:key import-path #:allow-other-keys)
- (with-directory-excursion (string-append "src/" import-path)
- (substitute* "schema_test.go"
- (("\\{\"phase\": \"remote ref, " all)
- (string-append "// " all))
- (("\\{\"phase\": \"valid definition" all)
- (string-append "// " all))
- (("\\{\"phase\": \"invalid definition" all)
- (string-append "// " all)))))))))
+ (list
+ ;; validation of time strings. only RFC3339 not all of ISO 8601 are
+ ;; valid. expects: false, given true Schema: {"format":"time"} Data:
+ ;; "01:01:01,1111"
+ #:test-flags #~(list "-skip" "TestFormats")
+ #:import-path "github.com/xeipuuv/gojsonschema"))
(native-inputs
(list go-github-com-stretchr-testify))
(propagated-inputs
@@ -5486,7 +5477,7 @@ programming language.")
(description
"This package provides an implementation of JSON Schema for the Go
programming language, which supports draft-04, draft-06 and draft-07.")
- (license license:asl2.0))))
+ (license license:asl2.0)))
(define-public go-golang-org-x-oauth2
(package