gnu: Add r-jsonify.

* gnu/packages/cran.scm (r-jsonify): New variable.
This commit is contained in:
Ricardo Wurmus 2023-03-25 15:00:56 +01:00
parent 04724e5997
commit 23d4ee1bf5
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC

View File

@ -3246,6 +3246,28 @@ re-imagining of @code{httr} that uses a pipe-based interface and solves more
of the problems that API wrapping packages face.")
(license license:expat)))
(define-public r-jsonify
(package
(name "r-jsonify")
(version "1.2.2")
(source (origin
(method url-fetch)
(uri (cran-uri "jsonify" version))
(sha256
(base32
"0bxgyj5b1hnijq5315g050giixy4k5mjz2zdx8yil0igb5ifji9p"))))
(properties `((upstream-name . "jsonify")))
(build-system r-build-system)
(propagated-inputs (list r-rapidjsonr r-rcpp))
(native-inputs (list r-knitr))
(home-page "https://cran.r-project.org/package=jsonify")
(synopsis
"Convert between R objects and JavaScript Object Notation (JSON)")
(description
"This package enables conversions between R objects and JavaScript Object
Notation (JSON) using the rapidjsonr library.")
(license license:expat)))
(define-public r-jsonlite
(package
(name "r-jsonlite")