summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-04-26 03:03:52 -0500
committerGitHub <noreply@github.com>2021-04-26 10:03:52 +0200
commit2473e0cc82e9be4a4e04177343792c22b23a0d30 (patch)
tree2ed8afb4918e65921a653137a4c5493e4202c5b6 /var
parentd21339bae5e14a0b862845ec051358fe2f0c4105 (diff)
downloadspack-2473e0cc82e9be4a4e04177343792c22b23a0d30.tar.gz
spack-2473e0cc82e9be4a4e04177343792c22b23a0d30.tar.bz2
spack-2473e0cc82e9be4a4e04177343792c22b23a0d30.tar.xz
spack-2473e0cc82e9be4a4e04177343792c22b23a0d30.zip
r-blavaan: new package (#23232)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-blavaan/package.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-blavaan/package.py b/var/spack/repos/builtin/packages/r-blavaan/package.py
new file mode 100644
index 0000000000..1451e52758
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-blavaan/package.py
@@ -0,0 +1,37 @@
+# Copyright 2013-2021 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 import *
+
+
+class RBlavaan(RPackage):
+ """Bayesian Latent Variable Analysis:
+
+ Fit a variety of Bayesian latent variable models, including confirmatory
+ factor analysis, structural equation models, and latent growth curve
+ models."""
+
+ cran = "blavaan"
+
+ version('0.3-15', sha256='f73ead024bc3b65bdb0c5e5cd5458845158914eb579c07be2fd697a3573ebe6f')
+
+ depends_on('r@3.5.0:', type=('build', 'run'))
+ depends_on('r-lavaan@0.6-5:', type=('build', 'run'))
+ depends_on('r-rcpp@0.12.15:', type=('build', 'run'))
+ depends_on('r-rcppparallel@5.0.1:', type=('build', 'run'))
+ depends_on('r-mcmcpack', type=('build', 'run'))
+ depends_on('r-coda', type=('build', 'run'))
+ depends_on('r-mnormt', type=('build', 'run'))
+ depends_on('r-nonnest2@0.5-5:', type=('build', 'run'))
+ depends_on('r-loo@2.0:', type=('build', 'run'))
+ depends_on('r-rstan@2.19.2:', type=('build', 'run'))
+ depends_on('r-rstantools@1.5.0:', type=('build', 'run'))
+ depends_on('r-bayesplot', type=('build', 'run'))
+ depends_on('r-matrix', type=('build', 'run'))
+ depends_on('r-future-apply', type=('build', 'run'))
+ depends_on('r-stanheaders@2.18.1:', type=('build', 'run'))
+ depends_on('r-bh@1.69.0:', type=('build', 'run'))
+ depends_on('r-rcppeigen@0.3.3.4.0:', type=('build', 'run'))
+ depends_on('gmake', type='build')