mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add r-rapiclient.
* gnu/packages/cran.scm (r-rapiclient): New variable.
This commit is contained in:
parent
9fc3e4fb26
commit
452039f35e
1 changed files with 22 additions and 0 deletions
|
@ -10352,6 +10352,28 @@ (define-public r-collapsibletree
|
|||
the source data frame.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public r-rapiclient
|
||||
(package
|
||||
(name "r-rapiclient")
|
||||
(version "0.1.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "rapiclient" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1pm4kdga2nz1cpmchdb0ad8gr3bqfm84b1kl32cyc0x3x5rr2syz"))))
|
||||
(properties `((upstream-name . "rapiclient")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
(list r-httr r-jsonlite r-yaml))
|
||||
(home-page "https://github.com/bergant/rapiclient")
|
||||
(synopsis "Dynamic OpenAPI/Swagger client")
|
||||
(description
|
||||
"This package lets you access services specified in OpenAPI (formerly
|
||||
Swagger) format. It is not a code generator. The client is generated
|
||||
dynamically as a list of R functions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-rappdirs
|
||||
(package
|
||||
(name "r-rappdirs")
|
||||
|
|
Loading…
Reference in a new issue