spack/var/spack/repos/builtin/packages/r-shinythemes/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

24 lines
712 B
Python

# 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 RShinythemes(RPackage):
"""Themes for Shiny.
Themes for use with Shiny. Includes several Bootstrap themes from
<https://bootswatch.com/>, which are packaged for use with Shiny
applications."""
cran = "shinythemes"
license("GPL-3.0-only OR custom")
version("1.2.0", sha256="37d68569ce838c7da9f0ea7e2b162ecf38fba2ae448a4888b6dd29c4bb5b2963")
depends_on("r@3.0.0:", type=("build", "run"))
depends_on("r-shiny@0.11:", type=("build", "run"))