diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2018-11-12 18:41:03 -0600 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2018-11-12 18:41:03 -0600 |
commit | 553cecaade598992b3b6c0dd71a5d87933a6a557 (patch) | |
tree | 20df6017bf0f3ee421de23ba93c19fbc5c33db48 | |
parent | 2ee0d98be1929b0a399a20ec2efb8fb2199bf118 (diff) | |
download | spack-553cecaade598992b3b6c0dd71a5d87933a6a557.tar.gz spack-553cecaade598992b3b6c0dd71a5d87933a6a557.tar.bz2 spack-553cecaade598992b3b6c0dd71a5d87933a6a557.tar.xz spack-553cecaade598992b3b6c0dd71a5d87933a6a557.zip |
r-manipulatewidget: new package at 0.10.0 (#9826)
-rw-r--r-- | var/spack/repos/builtin/packages/r-manipulatewidget/package.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-manipulatewidget/package.py b/var/spack/repos/builtin/packages/r-manipulatewidget/package.py new file mode 100644 index 0000000000..ad295294f6 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-manipulatewidget/package.py @@ -0,0 +1,28 @@ +# 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 RManipulatewidget(RPackage): + """Like package 'manipulate' does for static graphics, this package helps + to easily add controls like sliders, pickers, checkboxes, etc. that can + be used to modify the input data or the parameters of an interactive + chart created with package 'htmlwidgets'.""" + + homepage = "https://github.com/rte-antares-rpackage/manipulateWidget" + url = "https://cran.r-project.org/src/contrib/manipulateWidget_0.10.0.tar.gz" + list_url = "https://cran.r-project.org/src/contrib/Archive/manipulateWidget/" + + version('0.10.0', sha256='3d61a3d0cedf5c8a850a3e62ed6af38c600dc3f25b44c4ff07a5093bf9ca4ffd') + + depends_on('r-base64enc', type=('build', 'run')) + depends_on('r-codetools', type=('build', 'run')) + depends_on('r-htmltools', type=('build', 'run')) + depends_on('r-htmlwidgets', type=('build', 'run')) + depends_on('r-knitr', type=('build', 'run')) + depends_on('r-miniui', type=('build', 'run')) + depends_on('r-shiny@1.0.3:', type=('build', 'run')) + depends_on('r-webshot', type=('build', 'run')) |