summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2021-08-16 13:52:47 -0400
committerGitHub <noreply@github.com>2021-08-16 12:52:47 -0500
commite64659b008a0cef9aaee6120f6c318c13f315800 (patch)
tree58105bdcf54a9ec59112c3593eecd6524b032c5a
parent51ad841f1ed9b18b7cbb0066c054a522fc6e85a8 (diff)
downloadspack-e64659b008a0cef9aaee6120f6c318c13f315800.tar.gz
spack-e64659b008a0cef9aaee6120f6c318c13f315800.tar.bz2
spack-e64659b008a0cef9aaee6120f6c318c13f315800.tar.xz
spack-e64659b008a0cef9aaee6120f6c318c13f315800.zip
New package: r-nfactors (#25393)
-rw-r--r--var/spack/repos/builtin/packages/r-nfactors/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-nfactors/package.py b/var/spack/repos/builtin/packages/r-nfactors/package.py
new file mode 100644
index 0000000000..5f6f1bfc37
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-nfactors/package.py
@@ -0,0 +1,22 @@
+# 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 RNfactors(RPackage):
+ """nFactors: Parallel Analysis and Other Non Graphical Solutions to the
+ Cattell Scree Test"""
+
+ homepage = "https://cloud.r-project.org/package=nFactors"
+ url = "https://cloud.r-project.org/src/contrib/nFactors_2.4.1.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/nFactors"
+
+ version('2.4.1', sha256='028eb4ebd42a29f6a01297d728c7e353cabb37b46701639b4a52f17ba25a3eb6')
+
+ depends_on('r@3.5.0:', type=('build', 'run'))
+ depends_on('r-lattice', type=('build', 'run'))
+ depends_on('r-mass', type=('build', 'run'))
+ depends_on('r-psych', type=('build', 'run'))