summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaire Guilbaud <34576189+Bidibulke@users.noreply.github.com>2020-07-27 11:21:48 +0200
committerGitHub <noreply@github.com>2020-07-27 11:21:48 +0200
commit21a4edb1f33f9ff92e3eee2afbad21527e3fd23b (patch)
treeb30779253172b8db2b1cd7f60420e1ab84c7a64d
parent1ceec314222602214abc1afed0047c9176a5f699 (diff)
downloadspack-21a4edb1f33f9ff92e3eee2afbad21527e3fd23b.tar.gz
spack-21a4edb1f33f9ff92e3eee2afbad21527e3fd23b.tar.bz2
spack-21a4edb1f33f9ff92e3eee2afbad21527e3fd23b.tar.xz
spack-21a4edb1f33f9ff92e3eee2afbad21527e3fd23b.zip
sphinx gallery: new package at v0.7.0 (#17633)
-rw-r--r--var/spack/repos/builtin/packages/py-sphinx-gallery/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sphinx-gallery/package.py b/var/spack/repos/builtin/packages/py-sphinx-gallery/package.py
new file mode 100644
index 0000000000..f96e5a11f4
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-sphinx-gallery/package.py
@@ -0,0 +1,23 @@
+# 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 PySphinxGallery(PythonPackage):
+ """A `Sphinx` extension that builds an HTML version of any Python script
+ and puts it into an examples gallery.
+ """
+
+ homepage = "https://sphinx-gallery.github.io"
+ url = "https://files.pythonhosted.org/packages/9d/20/79118154e64a5280060b55c7ad025ad16f89b8192a6a9f0ffdbf71717bf0/sphinx-gallery-0.7.0.tar.gz"
+
+ version('0.7.0', sha256='05ead72c947718ab4183c33a598e29743e771dcf75aec84c53048423bd2f4580')
+ version('0.4.0', sha256='a286cf2eea47ce838a0754ecef617616afb1f40e41e52fe765723464f52e0c2f')
+
+ depends_on('py-setuptools')
+ depends_on('py-matplotlib')
+ depends_on('py-pillow')
+ depends_on('py-sphinx')