spack/var/spack/repos/builtin/packages/r-geometries/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
789 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 RGeometries(RPackage):
"""Convert Between R Objects and Geometric Structures.
Geometry shapes in 'R' are typically represented by matrices (points,
lines), with more complex shapes being lists of matrices (polygons).
'Geometries' will convert various 'R' objects into these shapes. Conversion
functions are available at both the 'R' level, and through 'Rcpp'."""
cran = "geometries"
version("0.2.0", sha256="8cf5094f3c2458fef5d755799c766afd27c66cd1c292574a6ab532d608360314")
depends_on("r-rcpp", type=("build", "run"))