gnu: Add julia-tables.
* gnu/packages/julia-xyz.scm (julia-tables-0.2.11): New variable.
This commit is contained in:
parent
8638814348
commit
6d7df2ab35
|
@ -513,3 +513,29 @@ represent missing data.")
|
||||||
@code{DataValues.jl} package that other packages can utilize for integration
|
@code{DataValues.jl} package that other packages can utilize for integration
|
||||||
without having to take direct dependencies.")
|
without having to take direct dependencies.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-tables
|
||||||
|
(package
|
||||||
|
(name "julia-tables")
|
||||||
|
(version "0.2.11")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaData/Tables.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name "Tables")
|
||||||
|
(sha256
|
||||||
|
(base32 "1ccvc0nicvy3yjmn7jnny2d357pzrs12qcf52qfxvb33k851zl8m"))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-iteratorinterfaceextensions" ,julia-iteratorinterfaceextensions)
|
||||||
|
("julia-tabletraits" ,julia-tabletraits)
|
||||||
|
("julia-dataapi" ,julia-dataapi)
|
||||||
|
("julia-datavalueinterfaces" ,julia-datavalueinterfaces)))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(home-page "https://github.com/JuliaData/Tables.jl")
|
||||||
|
(synopsis " Interface for tables in Julia")
|
||||||
|
(description "The @code{Tables.jl} package provides simple, yet powerful
|
||||||
|
interface functions for working with all kinds tabular data through
|
||||||
|
predictable access patterns.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in New Issue