gnu: Add julia-statsapi.

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

View file

@ -1721,6 +1721,29 @@ (define-public julia-staticarrays
linear algebra operations.") linear algebra operations.")
(license license:expat))) (license license:expat)))
(define-public julia-statsapi
(package
(name "julia-statsapi")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaStats/StatsAPI.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1k1c3s7i5wzkz4r9fyy4gd7wb97p0qgbc7bmaajm16zqipfmy2bv"))))
(build-system julia-build-system)
(home-page "https://juliastats.org/")
(synopsis "Statistics-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 @code{StatsAPI.jl} and each package taking a
dependency on it.")
(license license:expat)))
(define-public julia-suppressor (define-public julia-suppressor
(package (package
(name "julia-suppressor") (name "julia-suppressor")