summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-zeallot/package.py
blob: 5a4a5c2dad0bafeb4ba8f15e473f957f68f2f6d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 RZeallot(RPackage):
    """Multiple, Unpacking, and Destructuring Assignment.

    Provides a %<-% operator to perform multiple, unpacking, and destructuring
    assignment in R. The operator unpacks the right-hand side of an assignment
    into multiple values and assigns these values to variables on the left-hand
    side of the assignment."""

    cran = "zeallot"

    license("MIT")

    version("0.1.0", sha256="439f1213c97c8ddef9a1e1499bdf81c2940859f78b76bc86ba476cebd88ba1e9")