diff options
author | Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> | 2023-01-17 14:18:22 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-01-22 09:15:27 +0100 |
commit | 452039f35ebb7cb2db8d3bb706d06743442e11c3 (patch) | |
tree | 34daac5599a6e7cf9ff8646912d7cbd6eae31a38 | |
parent | 9fc3e4fb266903eb8b3eb9434c3cc84c64da5aed (diff) | |
download | guix-452039f35ebb7cb2db8d3bb706d06743442e11c3.tar.gz guix-452039f35ebb7cb2db8d3bb706d06743442e11c3.zip |
gnu: Add r-rapiclient.
* gnu/packages/cran.scm (r-rapiclient): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index c208fa85f4..dce349890a 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -10352,6 +10352,28 @@ Tooltips and color gradients can be mapped to nodes using a numeric column in 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") |