diff options
author | Jen Herting <jen@herting.cc> | 2021-09-26 22:35:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-26 21:35:24 -0500 |
commit | 87e91178a6036f90474af71c8b46ba42eaece1f2 (patch) | |
tree | 2610d7abfe24250b36f4aaa19220d36c4098fe09 /var | |
parent | e90534d45e7d405bf68e4e52b308e938a800364a (diff) | |
download | spack-87e91178a6036f90474af71c8b46ba42eaece1f2.tar.gz spack-87e91178a6036f90474af71c8b46ba42eaece1f2.tar.bz2 spack-87e91178a6036f90474af71c8b46ba42eaece1f2.tar.xz spack-87e91178a6036f90474af71c8b46ba42eaece1f2.zip |
New package: r-questionr (#25395)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/r-questionr/package.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-questionr/package.py b/var/spack/repos/builtin/packages/r-questionr/package.py new file mode 100644 index 0000000000..354c58231f --- /dev/null +++ b/var/spack/repos/builtin/packages/r-questionr/package.py @@ -0,0 +1,28 @@ +# 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 RQuestionr(RPackage): + """Set of functions to make the processing and analysis of surveys easier : + interactive shiny apps and addins for data recoding, contingency tables, + dataset metadata handling, and several convenience functions.""" + + homepage = "https://cloud.r-project.org/package=questionr" + url = "https://cloud.r-project.org/src/contrib/questionr_0.7.4.tar.gz" + list_url = "https://cloud.r-project.org/src/contrib/Archive/questionr" + + version('0.7.4', sha256='818ad87723aa7ebe466b3a639c9e86b7f77e6a341c8d9a933073925a21d4555c') + + depends_on('r@3.5.0:', type=('build', 'run')) + depends_on('r-shiny@1.0.5:', type=('build', 'run')) + depends_on('r-miniui', type=('build', 'run')) + depends_on('r-rstudioapi', type=('build', 'run')) + depends_on('r-highr', type=('build', 'run')) + depends_on('r-styler', type=('build', 'run')) + depends_on('r-classint', type=('build', 'run')) + depends_on('r-htmltools', type=('build', 'run')) + depends_on('r-labelled@2.6.0:', type=('build', 'run')) |