me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-tabletraits.

* gnu/packages/julia-xyz.scm (julia-tabletraits): New variable.
master
Efraim Flashner 2021-05-31 10:54:58 +03:00
parent 43f26eaeaa
commit 3f40ba72c6
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 21 additions and 0 deletions

View File

@ -1683,6 +1683,27 @@ extensions. It is intended to be the base both for @code{TableIO.jl} and for
the @code{Pluto.jl} tabular data import functionality.")
(license license:expat)))
(define-public julia-tabletraits
(package
(name "julia-tabletraits")
(version "1.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/queryverse/TableTraits.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "08ssb2630wm6j8f2qa985mn2vfibfm5kjcn4ayl2qkhfcyp8daw4"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-iteratorinterfaceextensions" ,julia-iteratorinterfaceextensions)))
(home-page "https://github.com/queryverse/TableTraits.jl")
(synopsis "Traits for Julia tables")
(description "TableTraits defines a generic interface for tabular data.")
(license license:expat)))
(define-public julia-unpack
(package
(name "julia-unpack")