diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-10-02 22:30:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-02 22:30:09 +0200 |
commit | bc6edc7bafdd4b1303107cec72201636e4c72cbd (patch) | |
tree | 21607dd5d53ee35e179aa7ad328a2c6c4c89f992 | |
parent | 2ce3be3a273b282f47d70be846579a27ba2fec38 (diff) | |
download | spack-bc6edc7bafdd4b1303107cec72201636e4c72cbd.tar.gz spack-bc6edc7bafdd4b1303107cec72201636e4c72cbd.tar.bz2 spack-bc6edc7bafdd4b1303107cec72201636e4c72cbd.tar.xz spack-bc6edc7bafdd4b1303107cec72201636e4c72cbd.zip |
py-ipycanvas: new package (#26426)
-rw-r--r-- | var/spack/repos/builtin/packages/py-ipycanvas/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-ipycanvas/package.py b/var/spack/repos/builtin/packages/py-ipycanvas/package.py new file mode 100644 index 0000000000..efd6045754 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-ipycanvas/package.py @@ -0,0 +1,23 @@ +# 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 PyIpycanvas(PythonPackage): + """Interactive Canvas in Jupyter.""" + + homepage = "https://github.com/martinRenou/ipycanvas" + pypi = "ipycanvas/ipycanvas-0.9.0.tar.gz" + + version('0.9.0', sha256='f29e56b93fe765ceace0676c3e75d44e02a3ff6c806f3b7e5b869279f470cc43') + + depends_on('python@3.5:', type=('build', 'run')) + depends_on('py-setuptools@40.8:', type='build') + depends_on('py-jupyter-packaging@0.7.0:0.7', type='build') + depends_on('py-jupyterlab@3.0:3', type='build') + depends_on('py-ipywidgets@7.6:', type=('build', 'run')) + depends_on('pil@6:', type=('build', 'run')) + depends_on('py-numpy', type=('build', 'run')) |