# Copyright 2013-2024 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.package import * class RShinydashboard(RPackage): """Create Dashboards with 'Shiny'. Create dashboards with 'Shiny'. This package provides a theme on top of 'Shiny', making it easy to create attractive dashboards.""" cran = "shinydashboard" license("GPL-2.0-or-later OR custom") version("0.7.2", sha256="a56ee48572649830cd8d82f1caa2099411461e19e19223cbad36a375299f3843") version("0.7.1", sha256="51a49945c6b8a684111a2ba4b2a5964e3a50610286ce0378e37ae02316620a4e") version("0.7.0", sha256="0b7b102e9e5bea78ddc4da628d072a358270f2db9b63a6ebe4d8bdce3066d883") version("0.6.1", sha256="1ee38f257433d24455426bc9d85c36f588735a54fbf6143935fed9cccb3bf193") depends_on("r@3.0:", type=("build", "run")) depends_on("r-shiny@1.0.0:", type=("build", "run")) depends_on("r-htmltools@0.2.6:", type=("build", "run")) depends_on("r-promises", type=("build", "run"), when="@0.7.1:")