25 lines
988 B
Python
25 lines
988 B
Python
# 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 RMatrixmodels(RPackage):
|
|
"""Modelling with Sparse and Dense Matrices.
|
|
|
|
Modelling with sparse and dense 'Matrix' matrices, using modular prediction
|
|
and response module classes."""
|
|
|
|
cran = "MatrixModels"
|
|
|
|
version("0.5-1", sha256="3fc55bdfa5ab40c75bf395e90983d14c9715078c33c727c1658e4e1f36e43ea9")
|
|
version("0.5-0", sha256="a87faf1a185219f79ea2307e6787d293e1d30bf3af9398e8cfe1e079978946ed")
|
|
version("0.4-1", sha256="fe878e401e697992a480cd146421c3a10fa331f6b37a51bac83b5c1119dcce33")
|
|
|
|
depends_on("r@3.0.1:", type=("build", "run"))
|
|
depends_on("r@3.6.0:", type=("build", "run"), when="@0.5-1:")
|
|
depends_on("r-matrix@1.1-5:", type=("build", "run"))
|
|
depends_on("r-matrix@1.4-2:", type=("build", "run"), when="@0.5-1:")
|