guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit a70cb93edd2d336ea9585aba5724f36fd80183d5
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 18:48:49 2026 +0100
gnu: r-tibble: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-tibble): Move from here...
* gnu/packages/cran.scm (r-tibble): ...to here.
Change-Id: I1f37fdca754c850cbb180d2c39b3d94d45b00a19
---
gnu/packages/cran.scm | 35 +++++++++++++++++++++++++++++++++++
gnu/packages/statistics.scm | 35 -----------------------------------
2 files changed, 35 insertions(+), 35 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index bcc4f816e3..32becca665 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -12800,6 +12800,41 @@ algorithm described in MetaCell analysis of
single-cell RNA-seq
data using K-nn graph partitions.")
(license license:gpl2)))
+(define-public r-tibble
+ (package
+ (name "r-tibble")
+ (version "3.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "tibble" version))
+ (sha256
+ (base32
+ "13xjjas9882518i0s8x6az6mmzz8srxgz1byghiin0ir3659yc7v"))))
+ ;; r-diagrammer contains massive amounts of minified JavaScript.
+ (properties
+ '((updater-ignored-native-inputs . ("r-diagrammer"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ (list r-cli
+ r-lifecycle
+ r-magrittr
+ r-pillar
+ r-pkgconfig
+ r-rlang
+ r-vctrs))
+ ;; The importer adds a lot more packages, but we don't need any of them.
+ (native-inputs
+ (list r-knitr
+ r-testthat
+ r-withr))
+ (home-page "https://github.com/hadley/tibble")
+ (synopsis "Simple data frames")
+ (description
+ "This package provides a @code{tbl_df} class that offers better checking
+and printing capabilities than traditional data frames.")
+ (license license:expat)))
+
(define-public r-tictoc
(package
(name "r-tictoc")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 9a3dd8b33f..fb5873a58b 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -883,41 +883,6 @@ posteriors and evidences.")
r-spatial
r-survival))))
-(define-public r-tibble
- (package
- (name "r-tibble")
- (version "3.3.1")
- (source
- (origin
- (method url-fetch)
- (uri (cran-uri "tibble" version))
- (sha256
- (base32
- "13xjjas9882518i0s8x6az6mmzz8srxgz1byghiin0ir3659yc7v"))))
- ;; r-diagrammer contains massive amounts of minified JavaScript.
- (properties
- '((updater-ignored-native-inputs . ("r-diagrammer"))))
- (build-system r-build-system)
- (propagated-inputs
- (list r-cli
- r-lifecycle
- r-magrittr
- r-pillar
- r-pkgconfig
- r-rlang
- r-vctrs))
- ;; The importer adds a lot more packages, but we don't need any of them.
- (native-inputs
- (list r-knitr
- r-testthat
- r-withr))
- (home-page "https://github.com/hadley/tibble")
- (synopsis "Simple data frames")
- (description
- "This package provides a @code{tbl_df} class that offers better checking
-and printing capabilities than traditional data frames.")
- (license license:expat)))
-
(define-public r-xpose4
(package
(name "r-xpose4")