summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2025-03-11 12:32:45 +0100
committerRicardo Wurmus <rekado@elephly.net>2025-04-16 11:01:22 +0200
commitfa7054325ca51241cc2633eef0dbb52b817c4748 (patch)
tree3cc52ef54aff51e80e0f81b3d3b9daaaf04c9744 /gnu
parente128a0b73e2d172ad21d31e5313b312161f8172b (diff)
gnu: r-praise: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-praise): Move from here... * gnu/packages/cran.scm (r-praise): ...to here. Change-Id: Ie7aa6d8e98b678d4487dd67997059e6cb908d96b
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/cran.scm25
-rw-r--r--gnu/packages/statistics.scm25
2 files changed, 25 insertions, 25 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index fe73921bc9b..b365681ea41 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -5523,6 +5523,31 @@ measures, clustering of presence-absence, abundance and multilocus genetical
data for species delimitation, nearest neighbor based noise detection.")
(license license:gpl2+)))
+(define-public r-praise
+ (package
+ (name "r-praise")
+ (version "1.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "praise" version))
+ (sha256
+ (base32
+ "1gfyypnvmih97p2r0php9qa39grzqpsdbq5g0fdsbpq5zms5w0sw"))))
+ (properties
+ ;; We can't have r-testthat among the inputs here to avoid a dependency
+ ;; cycle.
+ '((updater-ignored-native-inputs . ("r-testthat"))))
+ (build-system r-build-system)
+ ;; Tests require r-testthat, which depends on r-praise.
+ (arguments (list #:tests? #false))
+ (home-page "https://github.com/gaborcsardi/praise")
+ (synopsis "Functions to praise users")
+ (description
+ "This package provides template functions to assist in building friendly
+R packages that praise their users.")
+ (license license:expat)))
+
(define-public r-proto
(package
(name "r-proto")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index d5c4eeffde6..56fa671f493 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -568,31 +568,6 @@ available, greatly increasing its breadth and scope.")
understand the language at a deeper level.")
(license license:gpl2)))
-(define-public r-praise
- (package
- (name "r-praise")
- (version "1.0.0")
- (source
- (origin
- (method url-fetch)
- (uri (cran-uri "praise" version))
- (sha256
- (base32
- "1gfyypnvmih97p2r0php9qa39grzqpsdbq5g0fdsbpq5zms5w0sw"))))
- (properties
- ;; We can't have r-testthat among the inputs here to avoid a dependency
- ;; cycle.
- '((updater-ignored-native-inputs . ("r-testthat"))))
- (build-system r-build-system)
- ;; Tests require r-testthat, which depends on r-praise.
- (arguments (list #:tests? #false))
- (home-page "https://github.com/gaborcsardi/praise")
- (synopsis "Functions to praise users")
- (description
- "This package provides template functions to assist in building friendly
-R packages that praise their users.")
- (license license:expat)))
-
(define-public r-testthat
(package
(name "r-testthat")