gnu: Add julia-typedtables.

* gnu/packages/julia-xyz.scm (julia-typedtables): New variable.
This commit is contained in:
Efraim Flashner 2021-05-31 12:47:02 +03:00
parent f34f8a3d22
commit adedfd0773
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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")