summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-truncnorm/package.py
blob: d307bccdb549223bc1b70c356d7a41c60fd591d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 RTruncnorm(RPackage):
    """Density, probability, quantile and random number generation functions
    for the truncated normal distribution."""

    homepage = "https://cloud.r-project.org/package=truncnorm"
    url      = "https://cloud.r-project.org/src/contrib/truncnorm_1.0-8.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/truncnorm"

    version('1.0-8', sha256='49564e8d87063cf9610201fbc833859ed01935cc0581b9e21c42a0d21a47c87e')

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