summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-rex/package.py
blob: 936128b2808378a0711131d495187a135ae3cf12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2022 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 RRex(RPackage):
    """Friendly Regular Expressions.

    A friendly interface for the construction of regular expressions."""

    cran = "rex"

    version('1.2.1', sha256='af42e649c06e4bbdba94d5a1870a7e8347903571c90cd5e5ca40f52307a3bfd6')
    version('1.2.0', sha256='06b491f1469078862e40543fd74e1d38b2e0fb61fdf01c8083add4b11ac2eb54')
    version('1.1.2', sha256='bd3c74ceaf335336f5dd04314d0a791f6311e421a2158f321f5aab275f539a2a')

    depends_on('r-lazyeval', type=('build', 'run'))

    depends_on('r-magrittr', type=('build', 'run'), when='@:1.1.2')