diff options
author | iarspider <iarspider@gmail.com> | 2020-10-23 21:59:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 14:59:52 -0500 |
commit | 978d8ad0af3958f74b5c61e8cc4fa22c3ff0d622 (patch) | |
tree | 524e67bb146a50f8e01ef263f02659709424bcc6 | |
parent | bbc048e615f5043234c55130511322f723b67e87 (diff) | |
download | spack-978d8ad0af3958f74b5c61e8cc4fa22c3ff0d622.tar.gz spack-978d8ad0af3958f74b5c61e8cc4fa22c3ff0d622.tar.bz2 spack-978d8ad0af3958f74b5c61e8cc4fa22c3ff0d622.tar.xz spack-978d8ad0af3958f74b5c61e8cc4fa22c3ff0d622.zip |
New package: py-rise (#19496)
* New package: py-rise
* Fix URL and add description
* Update var/spack/repos/builtin/packages/py-rise/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
-rw-r--r-- | var/spack/repos/builtin/packages/py-rise/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-rise/package.py b/var/spack/repos/builtin/packages/py-rise/package.py new file mode 100644 index 0000000000..e9eba520ef --- /dev/null +++ b/var/spack/repos/builtin/packages/py-rise/package.py @@ -0,0 +1,19 @@ +# Copyright 2013-2020 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 PyRise(PythonPackage): + """Reveal.js - Jupyter/IPython Slideshow Extension""" + + homepage = "http://rise.readthedocs.io/" + url = "https://pypi.io/packages/source/r/rise/rise-5.6.1.tar.gz" + + version('5.6.1', sha256='1343f068d01adc4dd0226d9b278ce93fc92f365d827431a57e8d5679eb39f4d6') + + depends_on('python@2.7:2.7.99,3.4:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-notebook@5.5.0:', type=('build', 'run')) |