summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-irdisplay/package.py
blob: a78590697a17f9d9b243bb59bbbd2d2750c1ff1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 RIrdisplay(RPackage):
    """An interface to the rich display capabilities of Jupyter front-ends
    (e.g. 'Jupyter Notebook') Designed to be used from a running IRkernel
    session"""

    homepage = "https://irkernel.github.io"
    url      = "https://cloud.r-project.org/src/contrib/IRdisplay_0.4.4.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/IRdisplay"

    version('0.7.0', sha256='91eac9acdb92ed0fdc58e5da284aa4bb957ada5eef504fd89bec136747999089')
    version('0.4.4', sha256='e83a0bc52800618bf9a3ac5ef3d432512e00f392b7216fd515fca319377584a6')

    depends_on('r@3.0.1:', type=('build', 'run'))
    depends_on('r-repr', type=('build', 'run'))