
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
28 lines
1.2 KiB
Python
28 lines
1.2 KiB
Python
# 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 RInfluencer(RPackage):
|
|
"""Provides functionality to compute various node centrality measures on
|
|
networks. Included are functions to compute betweenness centrality (by
|
|
utilizing Madduri and Bader's SNAP library), implementations of Burt's
|
|
constraint and effective network size (ENS) metrics, Borgatti's algorithm
|
|
to identify key players, and Valente's bridging metric. On Unix systems,
|
|
the betweenness, Key Players, and bridging implementations are parallelized
|
|
with OpenMP, which may run faster on systems which have OpenMP
|
|
configured."""
|
|
|
|
homepage = "https://github.com/rcc-uchicago/influenceR"
|
|
url = "https://cloud.r-project.org/src/contrib/influenceR_0.1.0.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/influenceR"
|
|
|
|
version('0.1.0', sha256='4fc9324179bd8896875fc0e879a8a96b9ef2a6cf42a296c3b7b4d9098519e98a')
|
|
|
|
depends_on('r@3.2.0:', type=('build', 'run'))
|
|
depends_on('r-igraph@1.0.1:', type=('build', 'run'))
|
|
depends_on('r-matrix@1.1-4:', type=('build', 'run'))
|