summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-crul/package.py
blob: 6ce56a55843b95166d442f55994b73fefdda05c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 RCrul(RPackage):
    """crul: HTTP Client"""

    homepage = "https://cran.r-project.org/package=crul"
    url      = "https://cran.r-project.org/src/contrib/crul_0.7.4.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/crul"

    version('0.7.4', sha256='c963dd666ae3fc89b661ce19fce2fa19a16fc3825e1502105cae98ceb92c6014')

    depends_on('r-curl@3.3:', type=('build', 'run'))
    depends_on('r-httpcode@0.2.0:', type=('build', 'run'))
    depends_on('r-mime', type=('build', 'run'))
    depends_on('r-r6@2.2.0:', type=('build', 'run'))
    depends_on('r-urltools@1.6.0:', type=('build', 'run'))