2018-10-08 04:52:23 +08:00
|
|
|
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
|
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-11-04 04:17:36 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-11-04 04:17:36 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class RHypergraph(RPackage):
|
|
|
|
"""A package that implements some simple capabilities for
|
|
|
|
representing and manipulating hypergraphs."""
|
|
|
|
|
|
|
|
homepage = "https://www.bioconductor.org/packages/hypergraph/"
|
2018-07-24 10:56:48 +08:00
|
|
|
git = "https://git.bioconductor.org/packages/hypergraph.git"
|
2017-11-04 04:17:36 +08:00
|
|
|
|
2018-07-24 10:56:48 +08:00
|
|
|
version('1.48.0', commit='a4c19ea0b5f15204f706a7bfdea5363706382820')
|
2017-11-04 04:17:36 +08:00
|
|
|
|
|
|
|
depends_on('r@3.4.0:3.4.9', when='@1.48.0')
|
|
|
|
depends_on('r-graph', type=('build', 'run'))
|