summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-10-20 11:08:51 -0500
committerGitHub <noreply@github.com>2019-10-20 11:08:51 -0500
commitc8285da8e7bfa92c541943fb79e0eacf95c513eb (patch)
tree204f5fc13ac3231eff2f007bc5de3b5441730832 /var
parentd37c95b80b4b329722d2426b3187c677549da85f (diff)
downloadspack-c8285da8e7bfa92c541943fb79e0eacf95c513eb.tar.gz
spack-c8285da8e7bfa92c541943fb79e0eacf95c513eb.tar.bz2
spack-c8285da8e7bfa92c541943fb79e0eacf95c513eb.tar.xz
spack-c8285da8e7bfa92c541943fb79e0eacf95c513eb.zip
Add py-sphinxcontrib-applehelp package (#13279)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-sphinxcontrib-applehelp/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sphinxcontrib-applehelp/package.py b/var/spack/repos/builtin/packages/py-sphinxcontrib-applehelp/package.py
new file mode 100644
index 0000000000..089ef152cf
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-sphinxcontrib-applehelp/package.py
@@ -0,0 +1,23 @@
+# Copyright 2013-2019 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 PySphinxcontribApplehelp(PythonPackage):
+ """sphinxcontrib-applehelp is a sphinx extension which outputs Apple
+ help books."""
+
+ homepage = "http://sphinx-doc.org/"
+ url = "https://pypi.io/packages/source/s/sphinxcontrib-applehelp/sphinxcontrib-applehelp-1.0.1.tar.gz"
+
+ version('1.0.1', sha256='edaa0ab2b2bc74403149cb0209d6775c96de797dfd5b5e2a71981309efab3897')
+
+ depends_on('python@3.5:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+
+ def test(self):
+ # Requires sphinx, creating a circular dependency
+ pass