me
/
guix
Archived
1
0
Fork 0

gnu: Add r-readods.

* gnu/packages/cran.scm (r-readods): New variable.
master
Lars-Dominik Braun 2021-03-15 10:13:07 +01:00
parent cb360afd66
commit 03af89bd9e
No known key found for this signature in database
GPG Key ID: 421377011A378446
1 changed files with 27 additions and 0 deletions

View File

@ -27641,3 +27641,30 @@ structures from them.")
"This package provides functions to access Twitter's filter, sample, and "This package provides functions to access Twitter's filter, sample, and
user streams, and to parse the output into data frames.") user streams, and to parse the output into data frames.")
(license license:gpl2))) (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)))