gnu: Add r-googlesheets.

* gnu/packages/statistics.scm (r-googlesheets): New variable.
master
Ricardo Wurmus 2016-11-24 14:57:06 +01:00
parent d427e03eee
commit 9f5435d963
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 28 additions and 0 deletions

View File

@ -3314,6 +3314,34 @@ character vector.")
@code{A1:D10} style of cell range specification.")
(license license:expat)))
(define-public r-googlesheets
(package
(name "r-googlesheets")
(version "0.2.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "googlesheets" version))
(sha256
(base32
"0ps13h1cv7fj5dh8s4nvwi64wnnyqdsadcaa4iizq1c5s615cwk3"))))
(build-system r-build-system)
(propagated-inputs
`(("r-cellranger" ,r-cellranger)
("r-dplyr" ,r-dplyr)
("r-httr" ,r-httr)
("r-jsonlite" ,r-jsonlite)
("r-purrr" ,r-purrr)
("r-readr" ,r-readr)
("r-stringr" ,r-stringr)
("r-tidyr" ,r-tidyr)
("r-xml2" ,r-xml2)))
(home-page "https://github.com/jennybc/googlesheets")
(synopsis "Manage Google spreadsheets from R")
(description "This package provides tools to interact with Google Sheets
from within R.")
(license license:expat)))
(define-public r-rpart
(package
(name "r-rpart")