summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-keggrest/package.py
blob: dfe235b0abbd699479ea47469a892b42be38245c (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
# Copyright 2013-2022 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 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.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'))