diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/py-sphinxcontrib-spelling/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/py-sphinxcontrib-spelling/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sphinxcontrib-spelling/package.py b/var/spack/repos/builtin/packages/py-sphinxcontrib-spelling/package.py new file mode 100644 index 0000000000..19e0de61b6 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-sphinxcontrib-spelling/package.py @@ -0,0 +1,23 @@ +# Copyright 2013-2024 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.package import * + + +class PySphinxcontribSpelling(PythonPackage): + """A spelling checker for Sphinx-based documentation""" + + homepage = "https://sphinxcontrib-spelling.readthedocs.io" + pypi = "sphinxcontrib-spelling/sphinxcontrib-spelling-8.0.0.tar.gz" + + maintainers("rbberger") + + license("BSD-2-Clause") + + version("8.0.0", sha256="199d0a16902ad80c387c2966dc9eb10f565b1fb15ccce17210402db7c2443e5c") + + depends_on("python@3.7:") + depends_on("py-sphinx@3:") + depends_on("py-pyenchant@3.1.1:") |