mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-07 03:44:06 -05:00
gnu: Add julia-splitapplycombine.
* gnu/packages/julia-xyz.scm (julia-splitapplycombine): New variable.
This commit is contained in:
parent
ab942d5c3a
commit
8f856c8008
1 changed files with 26 additions and 0 deletions
|
@ -1458,6 +1458,32 @@ (define-public julia-specialfunctions
|
|||
polygamma functions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-splitapplycombine
|
||||
(package
|
||||
(name "julia-splitapplycombine")
|
||||
(version "1.1.4")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaData/SplitApplyCombine.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1qzaqvk57b0s5krzn8bxkzmr5kz6hi9dm3jbf2sl7z4vznsgbn9x"))))
|
||||
(build-system julia-build-system)
|
||||
(propagated-inputs
|
||||
`(("julia-dictionaries" ,julia-dictionaries)
|
||||
("julia-indexing" ,julia-indexing)))
|
||||
(home-page "https://github.com/JuliaData/SplitApplyCombine.jl")
|
||||
(synopsis "Split-apply-combine strategies for Julia")
|
||||
(description "@code{SplitApplyCombine.jl} provides high-level, generic tools
|
||||
for manipulating data - particularly focussing on data in nested containers. An
|
||||
emphasis is placed on ensuring split-apply-combine strategies are easy to apply,
|
||||
and work reliably for arbitrary iterables and in an optimized way with the data
|
||||
structures included in Julia's standard library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-stablerngs
|
||||
(package
|
||||
(name "julia-stablerngs")
|
||||
|
|
Loading…
Reference in a new issue