summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-speedglm/package.py
blob: c653323f274d8a1e602cf985c16ab0267a50313e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2018 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 RSpeedglm(RPackage):
    """Fitting linear models and generalized linear models to
    large data sets by updating algorithms."""

    homepage = "https://cran.r-project.org/package=speedglm"
    url      = "https://cran.rstudio.com/src/contrib/speedglm_0.3-2.tar.gz"
    list_url = "https://cran.rstudio.com/src/contrib/Archive/speedglm"

    version('0.3-2', 'c4874d4c2a677d657a335186ebb63131')

    depends_on('r-mass', type=('build', 'run'))
    depends_on('r-matrix', type=('build', 'run'))