guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

14/28: gnu: Add r-readods.


From: guix-commits
Subject: 14/28: gnu: Add r-readods.
Date: Mon, 15 Mar 2021 05:55:30 -0400 (EDT)

lbraun pushed a commit to branch master
in repository guix.

commit 03af89bd9efaeac35490b75fffb598dde302df12
Author: Lars-Dominik Braun <ldb@leibniz-psychology.org>
AuthorDate: Mon Mar 15 10:13:07 2021 +0100

    gnu: Add r-readods.
    
    * gnu/packages/cran.scm (r-readods): New variable.
---
 gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 6bc6f77..b6ee331 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -27641,3 +27641,30 @@ structures from them.")
       "This package provides functions to access Twitter's filter, sample, and
 user streams, and to parse the output into data frames.")
     (license license:gpl2)))
+
+(define-public r-readods
+  (package
+    (name "r-readods")
+    (version "1.7.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "readODS" version))
+        (sha256
+          (base32
+            "1hi217ab7hp15jsbzi5ak57cqf8jn2rv78bnn74q72gn9mrfra7n"))))
+    (properties `((upstream-name . "readODS")))
+    (build-system r-build-system)
+    (propagated-inputs
+      `(("r-cellranger" ,r-cellranger)
+        ("r-readr" ,r-readr)
+        ("r-stringi" ,r-stringi)
+        ("r-xml2" ,r-xml2)))
+    (native-inputs `(("r-knitr" ,r-knitr)))
+    (home-page
+      "https://cran.r-project.org/package=readODS";)
+    (synopsis "Read and Write ODS Files")
+    (description
+      "Import @dfn{OpenDocument Spreadsheet} (ODS) into R as a data frame.
+Also support writing data frame into ODS file.")
+    (license license:gpl3)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]