diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-16 17:04:20 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:21 +0100 |
| commit | 30b2838df447d4fcbab223c351284faf992918d6 (patch) | |
| tree | 8f8776ebfbeb18c07e39ccfb74aefc3c85ddccd5 /gnu/packages | |
| parent | 7202bcddf2a0bffa209fcdd5d3198844690bc354 (diff) | |
gnu: r-rsqlite: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-rsqlite): Move from here...
* gnu/packages/cran.scm (r-rsqlite): ...to here.
Change-Id: I8124d4d669fbf8199e1b92d1428bd508a87d8a68
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/cran.scm | 46 | ||||
| -rw-r--r-- | gnu/packages/statistics.scm | 46 |
2 files changed, 46 insertions, 46 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 521882f049c..fe09ae94afe 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7471,6 +7471,52 @@ tablets.") estimation and robust multivariate analysis with high breakdown point.") (license license:gpl2+))) +(define-public r-rsqlite + (package + (name "r-rsqlite") + (version "2.4.6") + (source (origin + (method url-fetch) + (uri (cran-uri "RSQLite" version)) + (sha256 + (base32 + "0gnzq7ga5grfb4rs09pi3rpr8cnj7wdb6gwca5r1ksy2my3y8lbg")))) + (properties + '((upstream-name . "RSQLite") + ;; These are not strictly necessary for running tests and adding them + ;; would cause dependency cycles. + (updater-ignored-native-inputs . ("r-dbitest" "r-ndbi")))) + (build-system r-build-system) + (arguments + (list + #:phases + '(modify-phases %standard-phases + ;; Needed for one failing test + (add-before 'check 'set-locale + (lambda _ (setenv "LC_ALL" "en_US.UTF-8")))))) + (propagated-inputs + (list r-bit64 + r-blob + r-cpp11 + r-dbi + r-memoise + r-pkgconfig + r-rlang)) + (native-inputs + (list r-callr + r-hms + r-knitr + r-magrittr + r-testthat + r-withr)) + (home-page "https://github.com/rstats-db/RSQLite") + (synopsis "SQLite interface for R") + (description + "This package embeds the SQLite database engine in R and provides an +interface compliant with the DBI package. The source for the SQLite engine is +included.") + (license license:lgpl2.0+))) + (define-public r-runner (package (name "r-runner") diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 0879cb3d2e0..dd3b7df4c94 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1701,52 +1701,6 @@ previous R versions and their release dates.") informative error messages when it's not available.") (license license:expat))) -(define-public r-rsqlite - (package - (name "r-rsqlite") - (version "2.4.6") - (source (origin - (method url-fetch) - (uri (cran-uri "RSQLite" version)) - (sha256 - (base32 - "0gnzq7ga5grfb4rs09pi3rpr8cnj7wdb6gwca5r1ksy2my3y8lbg")))) - (properties - '((upstream-name . "RSQLite") - ;; These are not strictly necessary for running tests and adding them - ;; would cause dependency cycles. - (updater-ignored-native-inputs . ("r-dbitest" "r-ndbi")))) - (build-system r-build-system) - (arguments - (list - #:phases - '(modify-phases %standard-phases - ;; Needed for one failing test - (add-before 'check 'set-locale - (lambda _ (setenv "LC_ALL" "en_US.UTF-8")))))) - (propagated-inputs - (list r-bit64 - r-blob - r-cpp11 - r-dbi - r-memoise - r-pkgconfig - r-rlang)) - (native-inputs - (list r-callr - r-hms - r-knitr - r-magrittr - r-testthat - r-withr)) - (home-page "https://github.com/rstats-db/RSQLite") - (synopsis "SQLite interface for R") - (description - "This package embeds the SQLite database engine in R and provides an -interface compliant with the DBI package. The source for the SQLite -engine (version 3.8.8.2) is included.") - (license license:lgpl2.0+))) - (define-public r-segmented (package (name "r-segmented") |
