summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-htmlwidgets/package.py
blob: 95e0cbd21c22d1c3571a674bdde8035f79cc1d7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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 RHtmlwidgets(RPackage):
    """HTML Widgets for R.

    A framework for creating HTML widgets that render in various contexts
    including the R console, 'R Markdown' documents, and 'Shiny' web
    applications."""

    cran = "htmlwidgets"

    license("MIT")

    version("1.6.2", sha256="7fda1672a4c0fbc203c790677b6ee7c40d2c2d72be4f6772f75288fc712b10bc")
    version("1.5.4", sha256="1a3fc60f40717de7f1716b754fd1c31a132e489a2560a278636ee78eba46ffc1")
    version("1.5.3", sha256="01a5833182cc224bd100be2815e57e67b524de9f2bb1542787b6e3d1303f0f29")
    version("1.3", sha256="f1e4ffabc29e6cfe857f627da095be3cfcbe0e1f02ae75e572f10b4a026c5a12")
    version("0.9", sha256="1154b541ccd868e41d3cf0d7f188f7275ec99f61fe2c7de21c8a05edb19b985e")
    version("0.8", sha256="9232b78727c1ecd006cd8e607ef76417d795f011b0e4a7535e6d673228bfc3b5")
    version("0.6", sha256="9c227f93ada71526d6e195e39a8efef41255af5567e39db3a6417ea9fed192ea")

    depends_on("r-htmltools@0.3:", type=("build", "run"))
    depends_on("r-htmltools@0.5.4:", type=("build", "run"), when="@1.6.2:")
    depends_on("r-jsonlite@0.9.16:", type=("build", "run"))
    depends_on("r-yaml", type=("build", "run"))
    depends_on("r-rmarkdown", type=("build", "run"), when="@1.6.2:")
    depends_on("r-knitr@1.8:", type=("build", "run"), when="@1.6.2:")