summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-ipywidgets/package.py
blob: 3f377f093d86c99902480dcb3fd1965e7fd29837 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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 PyIpywidgets(PythonPackage):
    """IPython widgets for the Jupyter Notebook"""

    homepage = "https://github.com/ipython/ipywidgets"
    pypi = "ipywidgets/ipywidgets-7.6.5.tar.gz"

    version('7.6.5', sha256='00974f7cb4d5f8d494c19810fedb9fa9b64bffd3cda7c2be23c133a1ad3c99c5')
    version('7.5.1', sha256='e945f6e02854a74994c596d9db83444a1850c01648f1574adf144fbbabe05c97')
    version('7.4.2', sha256='a3e224f430163f767047ab9a042fc55adbcab0c24bbe6cf9f306c4f89fdf0ba3')
    version('5.2.2', sha256='baf6098f054dd5eacc2934b8ea3bef908b81ca8660d839f1f940255a72c660d2')

    depends_on('python@2.7:2.8,3.3:', type=('build', 'run'))
    depends_on('py-ipython@4:', type=('build', 'run'))
    depends_on('py-ipython@4:5', type=('build', 'run'), when='^python@:3.2')
    depends_on('py-jupyterlab-widgets@1.0.0:', type=('build', 'run'),
               when='^python@3.6:')
    depends_on('py-ipykernel@4.2.2:', type=('build', 'run'))
    depends_on('py-ipykernel@4.5.1:', type=('build', 'run'), when='@6:')
    depends_on('py-ipython-genutils@0.2.0:0.2.999', type=('build', 'run'),
               when='@7.6.4:')
    depends_on('py-traitlets@4.2.1:', type=('build', 'run'))
    depends_on('py-traitlets@4.3.1:', type=('build', 'run'), when='@6:')
    depends_on('py-nbformat@4.2.0:', type=('build', 'run'), when='@6:')
    depends_on('py-widgetsnbextension@1.2.6:1.9', type=('build', 'run'),
               when='@5.2.2')
    depends_on('py-widgetsnbextension@3.4.0:3.4.999', type=('build', 'run'),
               when='@7.4.2')
    depends_on('py-widgetsnbextension@3.5.0:3.5.999', type=('build', 'run'),
               when='@7.5.1:')