summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-readr/package.py
blob: bb9b862ac99847e5b79018866d38d7c4e8aadf3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2013-2018 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 import *


class RReadr(RPackage):
    """The goal of 'readr' is to provide a fast and friendly way to read
       rectangular data (like 'csv', 'tsv', and 'fwf'). It is designed to
       flexibly parse many types of data found in the wild, while still cleanly
       failing when data unexpectedly changes."""

    homepage = "https://cran.rstudio.com/web/packages/readr/index.html"
    url      = "https://cran.rstudio.com/src/contrib/readr_1.1.1.tar.gz"

    version('1.1.1', 'cffb6669664f6a0f6fe172542e64cb47')

    depends_on('r-rcpp', type=('build', 'run'))
    depends_on('r-tibble', type=('build', 'run'))
    depends_on('r-hms', type=('build', 'run'))
    depends_on('r-r6', type=('build', 'run'))
    depends_on('r-bh', type=('build', 'run'))