spack/var/spack/repos/builtin/packages/r-xlsx/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

25 lines
795 B
Python

# 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 RXlsx(RPackage):
"""Read, Write, Format Excel 2007 and Excel 97/2000/XP/2003 Files.
Provide R functions to read/write/format Excel 2007 and Excel
97/2000/XP/2003 file formats."""
cran = "xlsx"
license("GPL-3.0-only")
version("0.6.5", sha256="378c5ed475a3d7631ea1ea13e0a69d619c1a52260922abda42818752dbb32107")
version("0.6.1", sha256="a580bd16b5477c1c185bf681c12c1ffff4088089f97b6a37997913d93ec5a8b4")
depends_on("r-rjava", type=("build", "run"))
depends_on("r-xlsxjars", type=("build", "run"))
depends_on("java@6:")