
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
25 lines
1.0 KiB
Python
25 lines
1.0 KiB
Python
# Copyright 2013-2021 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 RNetworkd3(RPackage):
|
|
"""Creates 'D3' 'JavaScript' network, tree, dendrogram, and Sankey graphs
|
|
from 'R'."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=networkD3"
|
|
url = "https://cloud.r-project.org/src/contrib/networkD3_0.2.12.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/networkD3"
|
|
|
|
version('0.4', sha256='33b82585f1eec6233303ec14033a703d0b17def441c7a0a67bf7e6764c9c9d0b')
|
|
version('0.3', sha256='6f9d6b35bb1562883df734bef8fbec166dd365e34c6e656da7be5f8a8d42343c')
|
|
version('0.2.12', sha256='b81b59c3c992609e25e1621e51d1240e3d086c2b9c3e9da49a6cb0c9ef7f4ea5')
|
|
|
|
depends_on('r@3.0.0:', type=('build', 'run'))
|
|
depends_on('r-htmlwidgets@0.3.2:', type=('build', 'run'))
|
|
depends_on('r-igraph', type=('build', 'run'))
|
|
depends_on('r-magrittr', type=('build', 'run'))
|