gnu: Add julia-csvfiles.
* gnu/packages/julia-xyz.scm (julia-csvfiles-0.16.0): New variable.
This commit is contained in:
parent
557463ef48
commit
f3983fc69e
|
@ -2094,3 +2094,34 @@ string representation and transfer.")
|
||||||
efficient specialized parsers for text files. Parsing packages can use
|
efficient specialized parsers for text files. Parsing packages can use
|
||||||
TextParse as a framework for implementing parsers for other formats.")
|
TextParse as a framework for implementing parsers for other formats.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-csvfiles
|
||||||
|
(package
|
||||||
|
(name "julia-csvfiles")
|
||||||
|
(version "0.16.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/queryverse/CSVFiles.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name "CSVFiles")
|
||||||
|
(sha256
|
||||||
|
(base32 "09g045lfc1cszp5lc6l5p12y9qlhrx894s5vd88wy5cmic4250jl"))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-codeczlib" ,julia-codeczlib)
|
||||||
|
("julia-iterabletables" ,julia-iterabletables)
|
||||||
|
("julia-fileio" ,julia-fileio)
|
||||||
|
("julia-textparse" ,julia-textparse)
|
||||||
|
("julia-datavalues" ,julia-datavalues)
|
||||||
|
("julia-tabletraitsutils" ,julia-tabletraitsutils)
|
||||||
|
("julia-tabletraits" ,julia-tabletraits)
|
||||||
|
("julia-tableshowutils" ,julia-tableshowutils)
|
||||||
|
("julia-iteratorinterfaceextensions" ,julia-iteratorinterfaceextensions)
|
||||||
|
("julia-http" ,julia-http)))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(home-page "https://github.com/queryverse/CSVFiles.jl")
|
||||||
|
(synopsis "FileIO.jl integration for CSV files")
|
||||||
|
(description "This package provides load and save support for CSV Files
|
||||||
|
under the @code{FileIO.jl} package.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in New Issue