summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-lmtest/package.py
blob: ad8dbaf46862d268c1daefdc9d1f2130202e6857 (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 RLmtest(RPackage):
    """A collection of tests, data sets, and examples for diagnostic checking
    in linear regression models. Furthermore, some generic tools for inference
    in parametric models are provided."""

    homepage = "https://cran.r-project.org/package=lmtest"
    url      = "https://cran.r-project.org/src/contrib/lmtest_0.9-34.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/lmtest"

    version('0.9-34', 'fcdf7286bb5ccc2ca46be00bf25ac2fe')

    depends_on('r-zoo', type=('build', 'run'))