summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-googlevis/package.py
blob: ac12962998af141c9831bd73222687fc932d98e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 RGooglevis(RPackage):
    """R interface to Google Charts API, allowing users to create interactive
    charts based on data frames. Charts are displayed locally via the R HTTP
    help server. A modern browser with an Internet connection is required and
    for some charts a Flash player. The data remains local and is not uploaded
    to Google."""

    homepage = "https://github.com/mages/googleVis#googlevis"
    url      = "https://cran.r-project.org/src/contrib/googleVis_0.6.0.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/googleVis"

    version('0.6.0', 'ec36fd2a6884ddc7baa894007d0d0468')

    depends_on('r-jsonlite', type=('build', 'run'))