summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-profvis/package.py
blob: 709aca7e825642f414842c5724c1c4ad66ddf0ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 RProfvis(RPackage):
    """Interactive visualizations for profiling R code."""

    cran = "profvis"

    license("GPL-3.0-only OR custom")

    version("0.3.7", sha256="43974863cb793f81dbea4b94096343c321f7739c9038980405c9b16b04a906b9")

    depends_on("r@3.0:", type=("build", "run"))
    depends_on("r-htmlwidgets@0.3.2:", type=("build", "run"))
    depends_on("r-stringr", type=("build", "run"))