24 lines
798 B
Python
24 lines
798 B
Python
![]() |
# 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
|