summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-jupyterlab-widgets/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-jupyterlab-widgets/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-jupyterlab-widgets/package.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-jupyterlab-widgets/package.py b/var/spack/repos/builtin/packages/py-jupyterlab-widgets/package.py
index ba0cfc11b2..70e18ca6a3 100644
--- a/var/spack/repos/builtin/packages/py-jupyterlab-widgets/package.py
+++ b/var/spack/repos/builtin/packages/py-jupyterlab-widgets/package.py
@@ -10,11 +10,15 @@ class PyJupyterlabWidgets(PythonPackage):
"""A JupyterLab extension."""
homepage = "https://github.com/jupyter-widgets/ipywidgets"
- pypi = "jupyterlab_widgets/jupyterlab_widgets-1.0.2.tar.gz"
+ # Source is also available, but I'm having issues getting it to build:
+ # https://github.com/jupyter-widgets/ipywidgets/issues/3324
+ url = "https://files.pythonhosted.org/packages/py3/j/jupyterlab_widgets/jupyterlab_widgets-1.0.2-py3-none-any.whl"
- version('1.0.2', sha256='7885092b2b96bf189c3a705cc3c412a4472ec5e8382d0b47219a66cccae73cfa')
+ version('1.0.2', sha256='f5d9efface8ec62941173ba1cffb2edd0ecddc801c11ae2931e30b50492eb8f7', expand=False)
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-setuptools@40.8.0:', type='build')
- depends_on('py-jupyter-packaging@0.7.9:0.7', type='build')
+ # TODO: replace this after concretizer learns how to concretize separate build deps
+ depends_on('py-jupyter-packaging7', type='build')
+ # depends_on('py-jupyter-packaging@0.7.9:0.7', type='build')
depends_on('py-jupyterlab@3.0:3', type='build')