summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-keggrest/package.py
blob: 8523fe9aa7c539fe86df064b4da0868c6ededa1b (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
27
28
29
30
31
32
33
# 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 RKeggrest(RPackage):
    """Client-side REST access to KEGG.

    A package that provides a client interface to the KEGG REST server.
    Based on KEGGSOAP by J. Zhang, R. Gentleman, and Marc Carlson, and KEGG
    (python package) by Aurelien Mazurie."""

    bioc = "KEGGREST"

    version("1.40.0", commit="1bdb0b57d7e9b708da14d2847c2a17ca35500b21")
    version("1.38.0", commit="4dfbff9f6662227bd49d64d18a342f469dd88ad3")
    version("1.36.3", commit="1827cde76863aa80c83264a0dd95514654358df3")
    version("1.36.0", commit="591818bbc9195bfd0657cf4f5c7c771ea7f86830")
    version("1.34.0", commit="2056750dc202fa04a34b84c6c712e884c7cad2bd")
    version("1.30.1", commit="fd9970ea9df117d625257b8c6351cf85098cfbc1")
    version("1.24.1", commit="bbc3ef476e02147aad8e1f33178136cc797c1b3f")
    version("1.22.0", commit="4374507376be811d29416d0cbbfd9115a50494d9")
    version("1.20.2", commit="62b4519367841f3548536c117e7e2bfe3fa4bf72")
    version("1.18.1", commit="580c126eabc3c52145967708f67a428ca46b23b2")
    version("1.16.1", commit="ed48de0def57a909894e237fa4731c4a052d8849")

    depends_on("r@3.5.0:", when="@1.30.1:", type=("build", "run"))
    depends_on("r-httr", type=("build", "run"))
    depends_on("r-png", type=("build", "run"))
    depends_on("r-biostrings", type=("build", "run"))