summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-diagrammer/package.py
blob: 23ad11daf885a8258be148ba0f815c19b0c60fd6 (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
38
39
40
# Copyright 2013-2019 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 RDiagrammer(RPackage):
    """Create graph diagrams and flowcharts using R."""

    homepage = "https://github.com/rich-iannone/DiagrammeR"
    url      = "https://cloud.r-project.org/src/contrib/DiagrammeR_0.8.4.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/DiagrammeR"

    version('1.0.1', sha256='ccee8acf608fc909e73c6de4374cef5a570cb62e5f454ac55dda736f22f3f013')
    version('1.0.0', sha256='2b186dae1b19018681b979e9444bf16559c42740d8382676fbaf3b0f8a44337e')
    version('0.8.4', '9ee295c744f5d4ba9a84289ca7bdaf1a')

    depends_on('r@3.2.0:', when='@0.9.2:', type=('build', 'run'))
    depends_on('r-htmlwidgets@1.0:', type=('build', 'run'))
    depends_on('r-igraph@1.1.2:', type=('build', 'run'))
    depends_on('r-influencer@0.1.0:', type=('build', 'run'))
    depends_on('r-rstudioapi@0.7:', type=('build', 'run'))
    depends_on('r-stringr@1.3.0:', type=('build', 'run'))
    depends_on('r-visnetwork@2.0.3:', type=('build', 'run'))
    depends_on('r-scales@0.5.0:', type=('build', 'run'))
    depends_on('r-dplyr@0.7.4:', when='@1.0.0:', type=('build', 'run'))
    depends_on('r-downloader@0.4:', when='@1.0.0:', type=('build', 'run'))
    depends_on('r-glue@1.2.0:', when='@1.0.0:', type=('build', 'run'))
    depends_on('r-htmltools@0.3.6:', when='@1.0.0:', type=('build', 'run'))
    depends_on('r-magrittr@1.5:', when='@1.0.0:', type=('build', 'run'))
    depends_on('r-purrr@0.2.4:', when='@1.0.0:', type=('build', 'run'))
    depends_on('r-rcolorbrewer@1.1-2:', when='@1.0.0:', type=('build', 'run'))
    depends_on('r-readr@1.1.1:', when='@1.0.0:', type=('build', 'run'))
    depends_on('r-rlang@0.2.0:', when='@1.0.0:', type=('build', 'run'))
    depends_on('r-rgexf@0.15.3:', when='@1.0.0:', type=('build', 'run'))
    depends_on('r-tibble@1.4.2:', when='@1.0.0:', type=('build', 'run'))
    depends_on('r-tidyr@0.8.0:', when='@1.0.0:', type=('build', 'run'))
    depends_on('r-viridis@0.5.0:', when='@1.0.0:', type=('build', 'run'))