summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-recipes/package.py
blob: 2bd58e60cf5f9c9e3eb1b5c2ae0a86613ebaf7a3 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright 2013-2020 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 RRecipes(RPackage):
    """An extensible framework to create and preprocess design matrices.
    Recipes consist of one or more data manipulation and analysis "steps".
    Statistical parameters for the steps can be estimated from an initial data
    set and then applied to other data sets. The resulting design matrices can
    then be used as inputs into statistical or machine learning models."""

    homepage = "https://github.com/tidymodels/recipes"
    url      = "https://cloud.r-project.org/src/contrib/recipes_0.1.6.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/recipes"

    version('0.1.6', sha256='51e0db72de171d58d13ad8ffcf1dea402ab8f82100d161722041b6fd014cbfd9')

    depends_on('r@3.1:', type=('build', 'run'))
    depends_on('r-dplyr', type=('build', 'run'))
    depends_on('r-generics', type=('build', 'run'))
    depends_on('r-glue', type=('build', 'run'))
    depends_on('r-gower', type=('build', 'run'))
    depends_on('r-ipred', type=('build', 'run'))
    depends_on('r-lubridate', type=('build', 'run'))
    depends_on('r-magrittr', type=('build', 'run'))
    depends_on('r-matrix', type=('build', 'run'))
    depends_on('r-purrr@0.2.3:', type=('build', 'run'))
    depends_on('r-rlang@0.4.0:', type=('build', 'run'))
    depends_on('r-tibble', type=('build', 'run'))
    depends_on('r-tidyr', type=('build', 'run'))
    depends_on('r-tidyselect@0.2.5:', type=('build', 'run'))
    depends_on('r-timedate', type=('build', 'run'))
    depends_on('r-withr', type=('build', 'run'))