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-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 RTidygraph(RPackage):
"""A Tidy API for Graph Manipulation.
A graph, while not "tidy" in itself, can be thought of as two tidy data
frames describing node and edge data respectively. 'tidygraph' provides an
approach to manipulate these two virtual data frames using the API defined
in the 'dplyr' package, as well as provides tidy interfaces to a lot of
common graph algorithms."""
cran = "tidygraph"
version("1.2.2", sha256="d555cad6b5b56bd2edaa29950a0fd15942e972db21561bfd5cd64fd9a8936470")
version("1.2.1", sha256="2fbdc2db18c5ad48c72f14d2d04111f4b0d4c434ad87c280eda3bcb98673ad36")
version("1.2.0", sha256="057d6c42fc0144109f3ace7f5058cca7b2fe493c761daa991448b23f86b6129f")
version("1.1.2", sha256="5642001d4cccb122d66481b7c61a06c724c02007cbd356ee61cb29726a56fafe")
depends_on("r-tibble", type=("build", "run"))
depends_on("r-dplyr@0.8:", type=("build", "run"))
depends_on("r-dplyr@0.8.5:", type=("build", "run"), when="@1.2.0:")
depends_on("r-igraph", type=("build", "run"))
depends_on("r-magrittr", type=("build", "run"))
depends_on("r-rlang", type=("build", "run"))
depends_on("r-r6", type=("build", "run"))
depends_on("r-tidyr", type=("build", "run"))
depends_on("r-pillar", type=("build", "run"))
depends_on("r-cli", type=("build", "run"), when="@1.2.1:")
depends_on("r-cpp11", type=("build", "run"), when="@1.2.1:")
depends_on("r-rcpp", type=("build", "run"), when="@:1.2.0")
|