summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-taxizedb/package.py
blob: a920c973f88d186c7025f3a1a1f03ae4e60d6690 (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
34
35
36
37
# 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 RTaxizedb(RPackage):
    """Tools for Working with 'Taxonomic' Databases.

    Tools for working with 'taxonomic' databases, including utilities for
    downloading databases, loading them into various 'SQL' databases, cleaning
    up files, and providing a 'SQL' connection that can be used to do 'SQL'
    queries directly or used in 'dplyr'."""

    cran = "taxizedb"

    license("MIT")

    version("0.3.1", sha256="452a1b8079e370c1f29a1ff40d731a5b04c935068b1d6b1c5d808e8bebbafd94")
    version("0.3.0", sha256="5f28338a233f0021097147e74c5f83107e5847de3413eceb308208e39af9fcb4")
    version("0.1.4", sha256="5a40569a2b5abe56201f112a10220150353412df39b7e8d21ea8698f424cf295")

    depends_on("r-curl@2.4:", type=("build", "run"))
    depends_on("r-dbi@0.6-1:", type=("build", "run"))
    depends_on("r-rsqlite@1.1.2:", type=("build", "run"))
    depends_on("r-dplyr@0.7.0:", type=("build", "run"))
    depends_on("r-tibble", type=("build", "run"), when="@0.3.0:")
    depends_on("r-rlang", type=("build", "run"), when="@0.3.0:")
    depends_on("r-readr@1.1.1:", type=("build", "run"), when="@0.3.0:")
    depends_on("r-dbplyr@1.0.0:", type=("build", "run"))
    depends_on("r-magrittr@1.5:", type=("build", "run"))
    depends_on("r-hoardr@0.1.0:", type=("build", "run"))

    depends_on("r-rpostgresql@0.4.1:", type=("build", "run"), when="@:0.1.4")
    depends_on("r-rmysql@0.10.11:", type=("build", "run"), when="@:0.1.4")