guix-patches
[Top][All Lists]
Advanced

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

[bug#55379] [PATCH 03/14] gnu: Add r-tidyxl.


From: kyle
Subject: [bug#55379] [PATCH 03/14] gnu: Add r-tidyxl.
Date: Thu, 12 May 2022 02:10:23 +0000

From: Kyle Andrews <kyle@posteo.net>

---
 gnu/packages/cran.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 57166bacdc..9578263789 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -33279,6 +33279,30 @@ (define-public r-piton
 grammars and easily expose them in R packages.")
    (license license:expat)))
 
+
+(define-public r-tidyxl
+  (package
+    (name "r-tidyxl")
+    (version "1.0.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "tidyxl" version))
+       (sha256
+       (base32 "1wg8h5fd2hd8ilshrbcs99q18p15687dx8j51v5pyd30pg5cab7b"))))
+    (properties `((upstream-name . "tidyxl")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-piton r-rcpp))
+    (native-inputs (list r-knitr))
+    (home-page "https://github.com/nacnudus/tidyxl";)
+    (synopsis "Read Untidy Excel Files")
+    (description
+     "Imports non-tabular from Excel files into R.  Exposes cell content, 
position and
+formatting in a tidy structure for further manipulation.  Tokenizes Excel
+formulas.  Supports '.xlsx' and '.xlsm' via the embedded 'RapidXML' C++ library
+<http://rapidxml.sourceforge.net>.  Does not support '.xlsb' or '.xls'.")
+    (license license:gpl3)))
+
 (define r-gpg
   (package
    (name "r-gpg")
-- 
2.36.0






reply via email to

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