summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-fastmatrix/package.py
blob: 2a69b92f64749aa39f97a231aacb1be4963f9127 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 RFastmatrix(RPackage):
    """Fast Computation of some Matrices Useful in Statistics

    Small set of functions to fast computation of some matrices and operations
    useful in statistics."""

    homepage = "https://faosorios.github.io/fastmatrix/"
    url      = "https://cloud.r-project.org/src/contrib/fastmatrix_0.3.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/fastmatrix"

    version('0.3', sha256='d92e789454a129db5f6f5b23e0d2245f3d55ff34b167427af265b9a6331e7c21')

    depends_on('r@3.5.0:', type=('build', 'run'))