summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2022-10-10 22:09:53 -0500
committerGitHub <noreply@github.com>2022-10-10 21:09:53 -0600
commitc885b591e295faccaf118b9a63c44cd7e90c8298 (patch)
tree79c5fdbb4cb169992e69018ad0e660a17ea80fa5
parent771aee30ea9ceb75d17dd74c715095436aec03f2 (diff)
downloadspack-c885b591e295faccaf118b9a63c44cd7e90c8298.tar.gz
spack-c885b591e295faccaf118b9a63c44cd7e90c8298.tar.bz2
spack-c885b591e295faccaf118b9a63c44cd7e90c8298.tar.xz
spack-c885b591e295faccaf118b9a63c44cd7e90c8298.zip
new package: r-profvis (#33171)
-rw-r--r--var/spack/repos/builtin/packages/r-profvis/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-profvis/package.py b/var/spack/repos/builtin/packages/r-profvis/package.py
new file mode 100644
index 0000000000..6848b7885f
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-profvis/package.py
@@ -0,0 +1,18 @@
+# Copyright 2013-2022 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"
+
+ 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"))