summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-10-20 11:08:34 -0500
committerGitHub <noreply@github.com>2019-10-20 11:08:34 -0500
commitd37c95b80b4b329722d2426b3187c677549da85f (patch)
tree135eed777ff38d8c61197b44d6f56e5037ccfd95 /var
parent7bda2fe2925fa67e2c7e48e13c395d1a0a9e1e63 (diff)
downloadspack-d37c95b80b4b329722d2426b3187c677549da85f.tar.gz
spack-d37c95b80b4b329722d2426b3187c677549da85f.tar.bz2
spack-d37c95b80b4b329722d2426b3187c677549da85f.tar.xz
spack-d37c95b80b4b329722d2426b3187c677549da85f.zip
Add py-sphinxcontrib-htmlhelp package (#13277)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-sphinxcontrib-htmlhelp/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sphinxcontrib-htmlhelp/package.py b/var/spack/repos/builtin/packages/py-sphinxcontrib-htmlhelp/package.py
new file mode 100644
index 0000000000..b4c8961d2c
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-sphinxcontrib-htmlhelp/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 PySphinxcontribHtmlhelp(PythonPackage):
+ """sphinxcontrib-htmlhelp is a sphinx extension which outputs htmlhelp
+ document."""
+
+ homepage = "http://sphinx-doc.org/"
+ url = "https://pypi.io/packages/source/s/sphinxcontrib-htmlhelp/sphinxcontrib-htmlhelp-1.0.2.tar.gz"
+
+ version('1.0.2', sha256='4670f99f8951bd78cd4ad2ab962f798f5618b17675c35c5ac3b2132a14ea8422')
+
+ depends_on('python@3.5:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+
+ def test(self):
+ # Requires sphinx, creating a circular dependency
+ pass