spack/var/spack/repos/builtin/packages/r-taxizedb/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

35 lines
1.5 KiB
Python

# Copyright 2013-2023 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"
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")