35 lines
1.4 KiB
Python
35 lines
1.4 KiB
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class RQuestionr(RPackage):
|
|
"""Functions to Make Surveys Processing Easier.
|
|
|
|
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."""
|
|
|
|
cran = "questionr"
|
|
|
|
license("GPL-2.0-or-later")
|
|
|
|
version("0.7.8", sha256="af72e59fe652c6063282a7e5b0f487993b9361cc9ed052a632d64a5a6db76ba9")
|
|
version("0.7.7", sha256="ce24c40bd98dbeca615b9eb2a9cd2da26852821dc3840f8394eeecb0739dfd56")
|
|
version("0.7.6", sha256="4b71d049d9e032157e12a7809dbfa2a39262b49d0c7a03ed434791a66f0cee5e")
|
|
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-rlang", type=("build", "run"), when="@0.7.8:")
|
|
depends_on("r-labelled@2.6.0:", type=("build", "run"))
|
|
depends_on("xclip", when="platform=linux")
|