mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add julia-typedtables.
* gnu/packages/julia-xyz.scm (julia-typedtables): New variable.
This commit is contained in:
parent
f34f8a3d22
commit
adedfd0773
1 changed files with 26 additions and 0 deletions
|
@ -2169,6 +2169,32 @@ (define-public julia-tensorcore
|
|||
dimensions}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-typedtables
|
||||
(package
|
||||
(name "julia-typedtables")
|
||||
(version "1.2.4")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaData/TypedTables.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "06k5h7ybsh29b6kiy0p62rp9b2q3xi9jk8p9wf0kq907p5kvfnfy"))))
|
||||
(build-system julia-build-system)
|
||||
(propagated-inputs
|
||||
`(("julia-adapt" ,julia-adapt)
|
||||
("julia-splitapplycombine" ,julia-splitapplycombine)
|
||||
("julia-tables" ,julia-tables)))
|
||||
(home-page "https://github.com/JuliaData/TypedTables.jl")
|
||||
(synopsis "Column-based storage for data analysis in Julia")
|
||||
(description "@code{TypedTables.jl} provides two column-based storage
|
||||
containers: @code{Table} and @code{FlexTable}, both of which represent an array
|
||||
of @code{NamedTuples}. This package is designed to be lightweight, easy-to-use
|
||||
and fast, and presents a very minimal new interface to learn.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-unpack
|
||||
(package
|
||||
(name "julia-unpack")
|
||||
|
|
Loading…
Reference in a new issue