diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-03-25 15:01:00 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-25 15:01:00 +0100 |
commit | 1eef799e7dfae0d3d467c343dc35e547811ba694 (patch) | |
tree | 3a15e263e4d68681cb511590ea8f2f160b11656e /gnu | |
parent | 23d4ee1bf55c7be179027c7100ceb61794b98809 (diff) | |
download | guix-1eef799e7dfae0d3d467c343dc35e547811ba694.tar.gz guix-1eef799e7dfae0d3d467c343dc35e547811ba694.zip |
gnu: Add r-nodbi.
* gnu/packages/cran.scm (r-nodbi): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 5a0062b2ed..b7356ac9c9 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -12275,6 +12275,34 @@ functions also support labelled data, and all integrate seamlessly into a tidyverse workflow.") (license license:gpl3))) +(define-public r-nodbi + (package + (name "r-nodbi") + (version "0.9.1") + (source (origin + (method url-fetch) + (uri (cran-uri "nodbi" version)) + (sha256 + (base32 + "1hn0wy2ry9l3wwqrshmf82cxigkm16wycwprv458bcvb5k6ayy5m")))) + (properties `((upstream-name . "nodbi"))) + (build-system r-build-system) + (propagated-inputs + (list r-dbi + r-jqr + r-jsonify + r-jsonlite + r-stringi + r-uuid)) + (home-page "https://docs.ropensci.org/nodbi/") + (synopsis "NoSQL database connector") + (description + "This is a package for simplified document database access and +manipulation, providing a common API across supported NoSQL databases +Elasticsearch, CouchDB, MongoDB as well as SQLite/JSON1, PostgreSQL, and +DuckDB.") + (license license:expat))) + (define-public r-nortest (package (name "r-nortest") |