mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add julia-dataapi.
* gnu/packages/julia-xyz.scm (julia-dataapi): New variable.
This commit is contained in:
parent
c85edf2ca4
commit
ccbf9c450e
1 changed files with 23 additions and 0 deletions
|
@ -440,6 +440,29 @@ (define-public julia-crayons
|
|||
styles available to terminals.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-dataapi
|
||||
(package
|
||||
(name "julia-dataapi")
|
||||
(version "1.6.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaData/DataAPI.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "14sfvkz169zcbap3gdwpj16qsap783h86fd07flfxk822abam11w"))))
|
||||
(build-system julia-build-system)
|
||||
(home-page "https://github.com/JuliaData/DataAPI.jl")
|
||||
(synopsis "Data-focused namespace for packages to share functions")
|
||||
(description "This package provides a namespace for data-related generic
|
||||
function definitions to solve the optional dependency problem; packages wishing
|
||||
to share and/or extend functions can avoid depending directly on each other by
|
||||
moving the function definition to DataAPI.jl and each package taking a
|
||||
dependency on it.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-datastructures
|
||||
(package
|
||||
(name "julia-datastructures")
|
||||
|
|
Loading…
Reference in a new issue