
- [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
26 lines
821 B
Python
26 lines
821 B
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 RIrkernel(RPackage):
|
|
"""R kernel for Jupyter"""
|
|
|
|
homepage = "https://irkernel.github.io/"
|
|
git = "https://github.com/IRkernel/IRkernel.git"
|
|
|
|
version('master', tag='0.7')
|
|
|
|
depends_on('r-repr', type=('build', 'run'))
|
|
depends_on('r-irdisplay', type=('build', 'run'))
|
|
depends_on('r-evaluate', type=('build', 'run'))
|
|
depends_on('r-crayon', type=('build', 'run'))
|
|
depends_on('r-pbdzmq', type=('build', 'run'))
|
|
depends_on('r-devtools', type=('build', 'run'))
|
|
depends_on('r-uuid', type=('build', 'run'))
|
|
depends_on('r-digest', type=('build', 'run'))
|