summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py5
1 files changed, 3 insertions, 2 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
index bab19eafa9..a20a9c4501 100644
--- a/var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py
+++ b/var/spack/repos/builtin/packages/py-sphinxcontrib-qthelp/package.py
@@ -2,8 +2,9 @@
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+from typing import List
-from spack import *
+from spack.package import *
class PySphinxcontribQthelp(PythonPackage):
@@ -16,7 +17,7 @@ class PySphinxcontribQthelp(PythonPackage):
# 'sphinx' requires 'sphinxcontrib-qthelp' at build-time, but
# 'sphinxcontrib-qthelp' requires 'sphinx' at run-time. Don't bother trying to
# import any modules.
- import_modules = []
+ import_modules = [] # type: List[str]
version('1.0.2', sha256='79465ce11ae5694ff165becda529a600c754f4bc459778778c7017374d4d406f')