diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-10-20 11:09:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-20 11:09:04 -0500 |
commit | 00f766b24865e8010411105794f20bc0ef39a6dc (patch) | |
tree | 70bddcfe47ad42cd8bea93f7fbf385cce6f40f42 /var | |
parent | c8285da8e7bfa92c541943fb79e0eacf95c513eb (diff) | |
download | spack-00f766b24865e8010411105794f20bc0ef39a6dc.tar.gz spack-00f766b24865e8010411105794f20bc0ef39a6dc.tar.bz2 spack-00f766b24865e8010411105794f20bc0ef39a6dc.tar.xz spack-00f766b24865e8010411105794f20bc0ef39a6dc.zip |
Add py-sphinxcontrib-devhelp package (#13278)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-sphinxcontrib-devhelp/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sphinxcontrib-devhelp/package.py b/var/spack/repos/builtin/packages/py-sphinxcontrib-devhelp/package.py new file mode 100644 index 0000000000..244fd13b78 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-sphinxcontrib-devhelp/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 PySphinxcontribDevhelp(PythonPackage): + """sphinxcontrib-devhelp is a sphinx extension which outputs + Devhelp document.""" + + homepage = "http://sphinx-doc.org/" + url = "https://pypi.io/packages/source/s/sphinxcontrib-devhelp/sphinxcontrib-devhelp-1.0.1.tar.gz" + + version('1.0.1', sha256='6c64b077937330a9128a4da74586e8c2130262f014689b4b89e2d08ee7294a34') + + depends_on('python@3.5:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + + def test(self): + # Requires sphinx, creating a circular dependency + pass |