spack/var/spack/repos/builtin/packages/r-shiny/package.py
2022-02-21 11:22:33 -06:00

56 lines
3.0 KiB
Python

# Copyright 2013-2022 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 RShiny(RPackage):
"""Web Application Framework for R.
Makes it incredibly easy to build interactive web applications with R.
Automatic "reactive" binding between inputs and outputs and extensive
pre-built widgets make it possible to build beautiful, responsive, and
powerful applications with minimal effort."""
cran = "shiny"
version('1.7.1', sha256='c03b2056fb41430352c7c0e812bcc8632e6ec4caef077d2f7633512d91721d00')
version('1.5.0', sha256='23cb8bfa448389c256efdab75e7e8d3ff90e5de66264c4ab02df322fb4298e9e')
version('1.3.2', sha256='28b851ae6c196ca845f6e815c1379247595ac123a4faa10a16533d1a9ce0c24f')
version('1.0.5', sha256='20e25f3f72f3608a2151663f7836f2e0c6da32683a555d7541063ae7a935fa42')
version('0.13.2', sha256='0fe7e952f468242d7c43ae49afcc764788f7f2fd5436d18c3d20a80db7296231')
depends_on('r@3.0.2:', type=('build', 'run'))
depends_on('r-httpuv@1.5.0:', type=('build', 'run'))
depends_on('r-httpuv@1.5.2:', type=('build', 'run'), when='@1.5.0:')
depends_on('r-mime@0.3:', type=('build', 'run'))
depends_on('r-jsonlite@0.9.16:', type=('build', 'run'))
depends_on('r-xtable', type=('build', 'run'))
depends_on('r-fontawesome@0.2.1:', type=('build', 'run'), when='@1.7.1:')
depends_on('r-htmltools@0.3.6:', type=('build', 'run'))
depends_on('r-htmltools@0.4.0.9003:', type=('build', 'run'), when='@1.5.0:')
depends_on('r-htmltools@0.5.2:', type=('build', 'run'), when='@1.7.1:')
depends_on('r-r6@2.0:', type=('build', 'run'))
depends_on('r-sourcetools', type=('build', 'run'))
depends_on('r-later@0.7.2:', type=('build', 'run'), when='@1.1.0:')
depends_on('r-later@1.0.0:', type=('build', 'run'), when='@1.5.0:')
depends_on('r-promises@1.0.1:', type=('build', 'run'), when='@1.1.0:')
depends_on('r-promises@1.1.0:', type=('build', 'run'), when='@1.5.0:')
depends_on('r-crayon', type=('build', 'run'), when='@1.1.0:')
depends_on('r-rlang', type=('build', 'run'), when='@1.1.0:')
depends_on('r-rlang@0.4.0:', type=('build', 'run'), when='@1.5.0:')
depends_on('r-rlang@0.4.10:', type=('build', 'run'), when='@1.7.1:')
depends_on('r-fastmap@1.0.0:', type=('build', 'run'), when='@1.5.0:')
depends_on('r-fastmap@1.1.0:', type=('build', 'run'), when='@1.7.1:')
depends_on('r-withr', type=('build', 'run'), when='@1.5.0:')
depends_on('r-commonmark@1.7:', type=('build', 'run'), when='@1.5.0:')
depends_on('r-glue@1.3.2:', type=('build', 'run'), when='@1.5.0:')
depends_on('r-bslib@0.3.0:', type=('build', 'run'), when='@1.7.1:')
depends_on('r-cachem', type=('build', 'run'), when='@1.7.1:')
depends_on('r-ellipsis', type=('build', 'run'), when='@1.7.1:')
depends_on('r-lifecycle@0.2.0:', type=('build', 'run'), when='@1.7.1:')
depends_on('r-digest', type=('build', 'run'), when='@:1.5.0')