guix-commits
[Top][All Lists]
Advanced

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

06/125: gnu: Add r-googlesheets4.


From: guix-commits
Subject: 06/125: gnu: Add r-googlesheets4.
Date: Tue, 4 May 2021 01:33:04 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 946f1608ae224ddbf3c699132ef9a313a1969f42
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 4 07:15:48 2021 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 9224a6d..0269838 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -230,6 +230,42 @@ visualization of their differences.")
 pronounceable identifiers.")
     (license license:expat)))
 
+(define-public r-googlesheets4
+  (package
+    (name "r-googlesheets4")
+    (version "0.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "googlesheets4" version))
+       (sha256
+        (base32
+         "04b17cdzah2r92qj7imrdlpfzyxwyf1vx8k1kvsr36nqg383f4b2"))))
+    (properties `((upstream-name . "googlesheets4")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-cellranger" ,r-cellranger)
+       ("r-curl" ,r-curl)
+       ("r-gargle" ,r-gargle)
+       ("r-glue" ,r-glue)
+       ("r-googledrive" ,r-googledrive)
+       ("r-httr" ,r-httr)
+       ("r-ids" ,r-ids)
+       ("r-lifecycle" ,r-lifecycle)
+       ("r-magrittr" ,r-magrittr)
+       ("r-purrr" ,r-purrr)
+       ("r-rematch2" ,r-rematch2)
+       ("r-rlang" ,r-rlang)
+       ("r-tibble" ,r-tibble)
+       ("r-vctrs" ,r-vctrs)))
+    (home-page "https://github.com/tidyverse/googlesheets4";)
+    (synopsis "Access Google Sheets using the Sheets API V4")
+    (description
+     "This package lets you interact with Google Sheets through the
+@url{https://developers.google.com/sheets/api,Sheets API v4}.  This package
+can read and write both the metadata and the cell data in a Sheet.")
+    (license license:expat)))
+
 (define-public r-waldo
   (package
     (name "r-waldo")



reply via email to

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