mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 11:09:41 -05:00
gnu: Add julia-datavalues.
* gnu/packages/julia-xyz.scm (julia-datavalues): New variable.
This commit is contained in:
parent
3f40ba72c6
commit
e886181bb6
1 changed files with 33 additions and 0 deletions
|
@ -508,6 +508,39 @@ (define-public julia-datavalueinterfaces
|
||||||
without having to take direct dependencies.")
|
without having to take direct dependencies.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-datavalues
|
||||||
|
(package
|
||||||
|
(name "julia-datavalues")
|
||||||
|
(version "0.4.13")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/queryverse/DataValues.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "15j3hrqq6nazn533bfsvg32xznacbzsl303j1qs48av59ppnvhhv"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'skip-known-failing-tests
|
||||||
|
(lambda _
|
||||||
|
;; See upstream report:
|
||||||
|
;; https://github.com/queryverse/DataValues.jl/issues/83
|
||||||
|
(substitute* "test/array/test_reduce.jl"
|
||||||
|
((".*DataValue\\(mapreduce.*") "")
|
||||||
|
((".*DataValue\\(method\\(f.*") ""))
|
||||||
|
#t)))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-datavalueinterfaces" ,julia-datavalueinterfaces)))
|
||||||
|
(home-page "https://github.com/queryverse/DataValues.jl")
|
||||||
|
(synopsis "Missing values for Julia")
|
||||||
|
(description "This package provides the type @code{DataValue} that is used
|
||||||
|
to represent missing data.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-dictionaries
|
(define-public julia-dictionaries
|
||||||
(package
|
(package
|
||||||
(name "julia-dictionaries")
|
(name "julia-dictionaries")
|
||||||
|
|
Loading…
Reference in a new issue