gnu: Add go-github-com-viant-toolbox.

These packages can't be added individually because of bootstrap and
dependencies chain.

* gnu/packages/golang-xyz.scm ( go-github-com-viant-assertly,
go-github-com-viant-assertly-bootstrap, go-github-com-viant-toolbox,
go-github-com-viant-toolbox-bootstrap, go-github-com-viant-xreflect,
go-github-com-viant-xunsafe): New variables.

Change-Id: I2aae108e6ed5f4c3ac054af515225d76d5f9d1d1

gnu: Add go-github-com-viant-assertly.

* gnu/packages/golang-check.scm (go-github-com-viant-assertly): New variable.

Change-Id: Ic6e9900d7cb5edfa8a0bf3229594a02c68a379ad
This commit is contained in:
Sharlatan Hellseher 2024-12-15 11:04:49 +00:00
parent 7028fd97da
commit ced8b40fff
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 184 additions and 0 deletions

View file

@ -1319,6 +1319,64 @@ functions and even in applications.")
functions for writing tests in an @code{xUnit} style.")
(license license:expat)))
(define-public go-github-com-viant-assertly
(package
(name "go-github-com-viant-assertly")
(version "0.9.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/viant/assertly")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0mli7kfkaz3k4izx76w14qhq5a8bp6x1zw9471idrhg5wxg1mr1r"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/viant/assertly"
#:test-flags #~(list "-skip" "TestAssertCoalesceWithZero")
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'pre-check
(lambda _
;; failed to expand macro 1<ds:env[\"USER\"]>3, path:[/]:,
;; failed to lookup USER in env.
(setenv "USER" "guix"))))))
(native-inputs
(list go-github-com-stretchr-testify))
(propagated-inputs
(list go-github-com-viant-toolbox))
(home-page "https://github.com/viant/assertly")
(synopsis "Data structure testing library)")
(description
"This library enables complex data structure testing, specifically:
@itemize
@item realtime transformation or casting of incompatible data types with
directives system
@item consistent way of testing of unordered structures
@item contains, Range, RegExp support on any data structure deeph level
@item switch case directive to provide expected value alternatives based on
actual switch/case input match
@item macro system enabling complex predicate and expression evaluation, and
customization
@end itemize")
(license license:asl2.0)))
(define-public go-github-com-viant-assertly-bootstrap
(hidden-package
(package
(inherit go-github-com-viant-assertly)
(arguments
(list #:tests? #f
#:import-path "github.com/viant/assertly"
#:phases
#~(modify-phases %standard-phases
(delete 'build))))
(native-inputs '())
(propagated-inputs '()))))
(define-public go-go-abhg-dev-requiredfield
(package
(name "go-go-abhg-dev-requiredfield")