summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-shiny/package.py
blob: 7165cd7af6ad4df50cf198bd902efb1e0a8fe918 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 2013-2018 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):
    """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."""

    homepage = "http://shiny.rstudio.com/"
    url      = "https://cran.rstudio.com/src/contrib/shiny_1.0.5.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/shiny"

    version('1.0.5', '419dd5d3ea0bd87a07f8f0b1ef14fc13')
    version('0.13.2', 'cb5bff7a28ad59ec2883cd0912ca9611')

    depends_on('r-httpuv', type=('build', 'run'))
    depends_on('r-mime', type=('build', 'run'))
    depends_on('r-jsonlite', type=('build', 'run'))
    depends_on('r-xtable', type=('build', 'run'))
    depends_on('r-digest', type=('build', 'run'))
    depends_on('r-htmltools', type=('build', 'run'))
    depends_on('r-r6', type=('build', 'run'))
    depends_on('r-sourcetools', type=('build', 'run'))