summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-lava/package.py
blob: 01739d205ffc0090f3c7dbeca6cba8af601573d0 (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-2019 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 RLava(RPackage):
    """Estimation and simulation of latent variable models."""

    homepage = "https://cran.r-project.org/package=lava"
    url      = "https://cran.r-project.org/src/contrib/lava_1.4.7.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/lava"

    version('1.4.7', '28039248a7039ba9281d172e4dbf9543')

    depends_on('r@3.0:')

    depends_on('r-numderiv', type=('build', 'run'))
    depends_on('r-survival', type=('build', 'run'))