31 lines
1.2 KiB
Python
31 lines
1.2 KiB
Python
# Copyright 2013-2020 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 RRbokeh(RPackage):
|
|
"""R interface for creating plots in Bokeh. Bokeh by Continuum
|
|
Analytics."""
|
|
|
|
homepage = "https://hafen.github.io/rbokeh"
|
|
url = "https://cloud.r-project.org/src/contrib/rbokeh_0.5.0.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/rbokeh"
|
|
|
|
version('0.5.0', sha256='499c3224a7dcaeb4bb60fd645b3ef528a20e59437747a073713941b80cbcebd2')
|
|
|
|
depends_on('r-htmlwidgets@0.5:', type=('build', 'run'))
|
|
depends_on('r-maps', type=('build', 'run'))
|
|
depends_on('r-jsonlite', type=('build', 'run'))
|
|
depends_on('r-digest', type=('build', 'run'))
|
|
depends_on('r-hexbin', type=('build', 'run'))
|
|
depends_on('r-lazyeval', type=('build', 'run'))
|
|
depends_on('r-pryr', type=('build', 'run'))
|
|
depends_on('r-magrittr', type=('build', 'run'))
|
|
depends_on('r-ggplot2', type=('build', 'run'))
|
|
depends_on('r-scales', type=('build', 'run'))
|
|
depends_on('r-gistr', type=('build', 'run'))
|