spack/var/spack/repos/builtin/packages/r-gsl/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

22 lines
674 B
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 RGsl(RPackage):
"""Wrapper for the Gnu Scientific Library.
An R wrapper for some of the functionality of the Gnu Scientific
Library."""
cran = "gsl"
version("2.1-7.1", sha256="ee98d1382d37ffa77538a90ccdbf44affbf1710a9e66b8ada73fa72e67921985")
version("2.1-6", sha256="f5d463239693f146617018987687db31b163653708cbae0b730b9b7bed81995c")
depends_on("r@3.1.0:", type=("build", "run"))
depends_on("gsl@2.1:")