diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-11-02 18:46:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 11:46:48 -0600 |
commit | 3187689862bf3a6c0eced724614944449213fcb1 (patch) | |
tree | a4240328d027224af220688bb157d815fd31683d | |
parent | 00b6927c65f7c97508235a67be5a23466b39cd57 (diff) | |
download | spack-3187689862bf3a6c0eced724614944449213fcb1.tar.gz spack-3187689862bf3a6c0eced724614944449213fcb1.tar.bz2 spack-3187689862bf3a6c0eced724614944449213fcb1.tar.xz spack-3187689862bf3a6c0eced724614944449213fcb1.zip |
r-googlesheets4: add new package (#27114)
-rw-r--r-- | var/spack/repos/builtin/packages/r-googlesheets4/package.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-googlesheets4/package.py b/var/spack/repos/builtin/packages/r-googlesheets4/package.py new file mode 100644 index 0000000000..7afe133cbf --- /dev/null +++ b/var/spack/repos/builtin/packages/r-googlesheets4/package.py @@ -0,0 +1,39 @@ +# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class RGooglesheets4(RPackage): + """Access Google Sheets using the Sheets API V4. + + Interact with Google Sheets through the Sheets API v4 + <https://developers.google.com/sheets/api>. "API" is an acronym for + "application programming interface"; the Sheets API allows users to + interact with Google Sheets programmatically, instead of via a web + browser. The "v4" refers to the fact that the Sheets API is currently at + version 4. This package can read and write both the metadata and the cell + data in a Sheet.""" + + homepage = "https://github.com/tidyverse/googlesheets4" + cran = "googlesheets4" + + version('1.0.0', sha256='0a107d76aac99d6db48d97ce55810c1412b2197f457b8476f676169a36c7cc7a') + + depends_on('r@3.3:', type=('build', 'run')) + depends_on('r-cellranger', type=('build', 'run')) + depends_on('r-cli@3.0.0:', type=('build', 'run')) + depends_on('r-curl', type=('build', 'run')) + depends_on('r-gargle@1.2.0', type=('build', 'run')) + depends_on('r-glue@1.3.0:', type=('build', 'run')) + depends_on('r-googledrive@2.0.0:', type=('build', 'run')) + depends_on('r-httr', type=('build', 'run')) + depends_on('r-ids', type=('build', 'run')) + depends_on('r-magrittr', type=('build', 'run')) + depends_on('r-purrr', type=('build', 'run')) + depends_on('r-rematch2', type=('build', 'run')) + depends_on('r-rlang@0.4.11:', type=('build', 'run')) + depends_on('r-tibble@2.1.1:', type=('build', 'run')) + depends_on('r-vctrs@0.2.3:', type=('build', 'run')) |