summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authoriarspider <iarspider@gmail.com>2020-02-18 18:55:47 +0100
committerGitHub <noreply@github.com>2020-02-18 11:55:47 -0600
commit74018df67802eef638180315139a8a71f7d4c036 (patch)
treed5542b762caf316b2c78c3cac20b99f2e5b107e5 /var
parentdb9ccc21b0c10fefff82e0cd0d4fa3b5d145ff01 (diff)
downloadspack-74018df67802eef638180315139a8a71f7d4c036.tar.gz
spack-74018df67802eef638180315139a8a71f7d4c036.tar.bz2
spack-74018df67802eef638180315139a8a71f7d4c036.tar.xz
spack-74018df67802eef638180315139a8a71f7d4c036.zip
Add extra version of py-ipywidgets (#14987)
* Add extra version of py-ipywidgets * Update var/spack/repos/builtin/packages/py-ipywidgets/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update package.py * Update var/spack/repos/builtin/packages/py-ipywidgets/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-ipywidgets/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-ipywidgets/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-ipywidgets/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-ipywidgets/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-ipywidgets/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-ipywidgets/package.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-ipywidgets/package.py b/var/spack/repos/builtin/packages/py-ipywidgets/package.py
index e8a8bfa258..5f211e977b 100644
--- a/var/spack/repos/builtin/packages/py-ipywidgets/package.py
+++ b/var/spack/repos/builtin/packages/py-ipywidgets/package.py
@@ -12,9 +12,17 @@ class PyIpywidgets(PythonPackage):
homepage = "https://github.com/ipython/ipywidgets"
url = "https://github.com/ipython/ipywidgets/archive/5.2.2.tar.gz"
+ version('7.4.2', sha256='f156165e8a855ed862fdf48e72700bdcd6956d089a2018c5b36d358255d45b2b')
version('5.2.2', sha256='d61ab8bb12b90981a3a6010429816d70eaa041e622043207bcb74239b664d4f3')
- depends_on('python@2.7:2.8,3.3:')
- depends_on('py-ipython@4.0.0:', type=('build', 'run'))
+ 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-ipykernel@4.2.2:', type=('build', 'run'))
+ depends_on('py-ipykernel@4.5.1:', type=('build', 'run'), when='@6:')
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@3.4.0:3.4.999', type=('build', 'run'), when='@6:')
+ depends_on('py-mock', type='test', when='^python@2.7:2.8')
+ depends_on('py-nose', type='test')