summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-restfulr/package.py
blob: d325d585dcb3f3fc3a83f51646e74ee84df97245 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 2013-2024 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.package import *


class RRestfulr(RPackage):
    """R Interface to RESTful Web Services.

    Models a RESTful service as if it were a nested R list."""

    cran = "restfulr"

    license("Artistic-2.0")

    version("0.0.15", sha256="40ff8f1fb2987af2223e1a855bb1680c5ce2143fbce7ebc42f1edb291f80e692")
    version("0.0.13", sha256="7b59f5887aaf02f46a80617f4d1e0ffd4e11e4840e9e2fbd486a9a9c7f2d64b6")

    depends_on("r@3.4.0:", type=("build", "run"))
    depends_on("r-xml", type=("build", "run"))
    depends_on("r-rcurl", type=("build", "run"))
    depends_on("r-rjson", type=("build", "run"))
    depends_on("r-s4vectors@0.13.15:", type=("build", "run"))
    depends_on("r-yaml", type=("build", "run"))