diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-11-03 01:24:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-03 00:24:21 +0000 |
commit | 61ded6588895c163fb3a37880b4de80bd8c3c85c (patch) | |
tree | 59b76bf6958eb77af08c90f62278c2aa3db5496b | |
parent | f1fb816d93821a19046474a9252a5b6fb2c9cd00 (diff) | |
download | spack-61ded6588895c163fb3a37880b4de80bd8c3c85c.tar.gz spack-61ded6588895c163fb3a37880b4de80bd8c3c85c.tar.bz2 spack-61ded6588895c163fb3a37880b4de80bd8c3c85c.tar.xz spack-61ded6588895c163fb3a37880b4de80bd8c3c85c.zip |
r-dtplyr: add new package (#27112)
-rw-r--r-- | var/spack/repos/builtin/packages/r-dtplyr/package.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-dtplyr/package.py b/var/spack/repos/builtin/packages/r-dtplyr/package.py new file mode 100644 index 0000000000..b16ed00ed3 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-dtplyr/package.py @@ -0,0 +1,31 @@ +# 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 RDtplyr(RPackage): + """Data Table Back-End for 'dplyr'. + + Provides a data.table backend for 'dplyr'. The goal of 'dtplyr' is to + allow you to write 'dplyr' code that is automatically translated to the + equivalent, but usually much faster, data.table code.""" + + homepage = "https://github.com/tidyverse/dtplyr" + cran = "dtplyr" + + version('1.1.0', sha256='99681b7285d7d5086e5595ca6bbeebf7f4e2ee358a32b694cd9d35916cdfc732') + + depends_on('r@3.3:', type=('build', 'run')) + depends_on('r-crayon', type=('build', 'run')) + depends_on('r-data-table@1.12.4:', type=('build', 'run')) + depends_on('r-dplyr@1.0.3:', type=('build', 'run')) + depends_on('r-ellipsis', type=('build', 'run')) + depends_on('r-glue', type=('build', 'run')) + depends_on('r-lifecycle', type=('build', 'run')) + depends_on('r-rlang', type=('build', 'run')) + depends_on('r-tibble', type=('build', 'run')) + depends_on('r-tidyselect', type=('build', 'run')) + depends_on('r-vctrs', type=('build', 'run')) |