summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-ggraph/package.py
blob: c4cbed3c91a105f68929a0d1d5650559e2f1d6b4 (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
# 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 RGgraph(RPackage):
    """ggraph: An Implementation of Grammar of Graphics for Graphs and
       Networks"""

    homepage = "https://github.com/thomasp85/ggraph"
    url      = "https://cloud.r-project.org/src/contrib/ggraph_2.0.0.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/ggraph"

    version('2.0.0', sha256='4307efe85bfc6a0496797f6b86d6b174ba196538c51b1a6b6af55de0d4e04762')

    depends_on('r@2.10:', type=('build', 'run'))
    depends_on('r-ggplot2@3.0.0:', type=('build', 'run'))
    depends_on('r-rcpp@0.12.2', type=('build', 'run'))
    depends_on('r-dplyr', type=('build', 'run'))
    depends_on('r-ggforce@0.3.1:', type=('build', 'run'))
    depends_on('r-igraph@1.0.0:', type=('build', 'run'))
    depends_on('r-scales', type=('build', 'run'))
    depends_on('r-mass', type=('build', 'run'))
    depends_on('r-digest', type=('build', 'run'))
    depends_on('r-gtable', type=('build', 'run'))
    depends_on('r-ggrepel', type=('build', 'run'))
    depends_on('r-viridis', type=('build', 'run'))
    depends_on('r-rlang', type=('build', 'run'))
    depends_on('r-tidygraph', type=('build', 'run'))
    depends_on('r-graphlayouts@0.5.0:', type=('build', 'run'))