diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-10-20 11:07:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-20 11:07:54 -0500 |
commit | d4ac57f3a328dd98b76f6c8924ddc9d735c32c04 (patch) | |
tree | 18d70fa875e4b9068a9b54d0bd85351d7c466eea /var | |
parent | f35bcaf83bcf6cdd9e1d46e0ca7597af20810c5a (diff) | |
download | spack-d4ac57f3a328dd98b76f6c8924ddc9d735c32c04.tar.gz spack-d4ac57f3a328dd98b76f6c8924ddc9d735c32c04.tar.bz2 spack-d4ac57f3a328dd98b76f6c8924ddc9d735c32c04.tar.xz spack-d4ac57f3a328dd98b76f6c8924ddc9d735c32c04.zip |
Add py-sphinxcontrib-qthelp package (#13275)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py b/var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py new file mode 100644 index 0000000000..17c2ba1e95 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/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 PySphinxcontribQthelp(PythonPackage): + """sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp + document.""" + + homepage = "http://sphinx-doc.org/" + url = "https://pypi.io/packages/source/s/sphinxcontrib-qthelp/sphinxcontrib-qthelp-1.0.2.tar.gz" + + version('1.0.2', sha256='79465ce11ae5694ff165becda529a600c754f4bc459778778c7017374d4d406f') + + depends_on('python@3.5:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + + def test(self): + # Requires sphinx, creating a circular dependency + pass |