New package: r-nfactors (#25393)

This commit is contained in:
Jen Herting 2021-08-16 13:52:47 -04:00 committed by GitHub
parent 51ad841f1e
commit e64659b008
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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'))