mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add r-jsonlite.
* gnu/packages/web.scm (r-jsonlite): New variable.
This commit is contained in:
parent
a359c9c15c
commit
21d3770e02
1 changed files with 24 additions and 0 deletions
|
@ -2886,3 +2886,27 @@ (define-public r-httpuv
|
|||
;; under various non-copyleft licenses. Full licensing information can be
|
||||
;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
|
||||
(license l:gpl3+)))
|
||||
|
||||
(define-public r-jsonlite
|
||||
(package
|
||||
(name "r-jsonlite")
|
||||
(version "0.9.17")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "jsonlite" version))
|
||||
(sha256
|
||||
(base32
|
||||
"07s11m8z43dh5pyci5rpjqj5js69q8prjar42qhhxbvdmcrjk4z7"))))
|
||||
(build-system r-build-system)
|
||||
(home-page "http://arxiv.org/abs/1403.2805")
|
||||
(synopsis "Robust, high performance JSON parser and generator for R")
|
||||
(description
|
||||
"The jsonlite package provides a fast JSON parser and generator optimized
|
||||
for statistical data and the web. It offers flexible, robust, high
|
||||
performance tools for working with JSON in R and is particularly powerful for
|
||||
building pipelines and interacting with a web API. In addition to converting
|
||||
JSON data from/to R objects, jsonlite contains functions to stream, validate,
|
||||
and prettify JSON data. The unit tests included with the package verify that
|
||||
all edge cases are encoded and decoded consistently for use with dynamic data
|
||||
in systems and applications.")
|
||||
(license l:expat)))
|
||||
|
|
Loading…
Reference in a new issue