summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-rnexml/package.py
blob: 72a709321c409913896b634a6a8938d2c0708f80 (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-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.package import *


class RRnexml(RPackage):
    """Semantically Rich I/O for the 'NeXML' Format.

    Provides access to phyloinformatic data in 'NeXML' format. The package
    should add new functionality to R such as the possibility to manipulate
    'NeXML' objects in more various and refined way and compatibility with
    'ape' objects."""

    cran = "RNeXML"

    version('2.4.5', sha256='2b667ecb6400e4c0c125ca73a98cde81330cde3a85b764261f77159e702754f3')

    depends_on('r@3.0.0:', type=('build', 'run'))
    depends_on('r-ape@3.1:', type=('build', 'run'))
    depends_on('r-xml@3.95:', type=('build', 'run'))
    depends_on('r-plyr@1.8:', type=('build', 'run'))
    depends_on('r-reshape2@1.2.2:', type=('build', 'run'))
    depends_on('r-httr@0.3:', type=('build', 'run'))
    depends_on('r-uuid@0.1-1:', type=('build', 'run'))
    depends_on('r-dplyr@0.5.0:', type=('build', 'run'))
    depends_on('r-lazyeval@0.1.0:', type=('build', 'run'))
    depends_on('r-tidyr@0.3.1:', type=('build', 'run'))
    depends_on('r-stringr@1.0:', type=('build', 'run'))
    depends_on('r-stringi', type=('build', 'run'))
    depends_on('r-xml2', type=('build', 'run'))