guix_mirror_bot pushed a commit to branch r-team
in repository guix.

commit ff00755ee08b4135c984f11e687c9d0c32d08f2d
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 18:36:45 2026 +0100

    gnu: r-sn: Move to (gnu packages cran).
    
    * gnu/packages/statistics.scm (r-sn): Move from here...
    * gnu/packages/cran.scm (r-sn): ...to here.
    
    Change-Id: I53e34aa96c69d861ff72fd89fdae52c7053a8a94
---
 gnu/packages/cran.scm       | 24 ++++++++++++++++++++++++
 gnu/packages/statistics.scm | 25 -------------------------
 2 files changed, 24 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ea7f449728..404f7de355 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -10385,6 +10385,30 @@ individual SNP score statistics in a SNP set and 
efficiently compute SNP-set
 level p-values.")
     (license license:gpl2+)))
 
+(define-public r-sn
+  (package
+    (name "r-sn")
+    (version "2.1.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "sn" version))
+       (sha256
+        (base32
+         "0riyb3r38cy582c0ppd72s07jlzf375v1b9bqs2dsw6rfhzix01f"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     (list r-mnormt r-numderiv r-quantreg))
+    (native-inputs (list r-r-rsp))
+    (home-page "http://azzalini.stat.unipd.it/SN";)
+    (synopsis "The skew-normal and skew-t distributions")
+    (description
+     "This package provides functionalities to build and manipulate
+probability distributions of the skew-normal family and some related ones,
+notably the skew-t family, and provides related statistical methods for data
+fitting and diagnostics, in the univariate and the multivariate case.")
+    (license license:gpl2+)))
+
 (define-public r-snowflakeauth
   (package
     (name "r-snowflakeauth")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 65128848f0..00ad2ed0e4 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1962,31 +1962,6 @@ which, one can calculate integrals over truncated 
regions for multivariate
 normals.")
     (license license:gpl2)))
 
-(define-public r-sn
-  (package
-    (name "r-sn")
-    (version "2.1.2")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "sn" version))
-       (sha256
-        (base32
-         "0riyb3r38cy582c0ppd72s07jlzf375v1b9bqs2dsw6rfhzix01f"))))
-    (build-system r-build-system)
-    (propagated-inputs
-     (list r-mnormt r-numderiv r-quantreg))
-    (native-inputs (list r-r-rsp))
-    (home-page "http://azzalini.stat.unipd.it/SN";)
-    (synopsis "The skew-normal and skew-t distributions")
-    (description
-     "This package provides functionalities to build and manipulate
-probability distributions of the skew-normal family and some related
-ones, notably the skew-t family, and provides related statistical
-methods for data fitting and diagnostics, in the univariate and the
-multivariate case.")
-    (license license:gpl2+)))
-
 (define-public r-tclust
   (package
     (name "r-tclust")

Reply via email to