diff options
author | Richard Berger <richard.berger@outlook.com> | 2024-09-22 08:39:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-22 16:39:37 +0200 |
commit | a608f83bfc8bb79c7116f8bd81a08e785d3c2728 (patch) | |
tree | a61f387d9aa318bc4dac244413211ca90031a5f2 /var | |
parent | f2c132af2db3ecf8b7adb4157b8a6c095f326b34 (diff) | |
download | spack-a608f83bfc8bb79c7116f8bd81a08e785d3c2728.tar.gz spack-a608f83bfc8bb79c7116f8bd81a08e785d3c2728.tar.bz2 spack-a608f83bfc8bb79c7116f8bd81a08e785d3c2728.tar.xz spack-a608f83bfc8bb79c7116f8bd81a08e785d3c2728.zip |
py-pyenchant: new package (#46400)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-pyenchant/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyenchant/package.py b/var/spack/repos/builtin/packages/py-pyenchant/package.py new file mode 100644 index 0000000000..a97afb66ec --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pyenchant/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 PyPyenchant(PythonPackage): + """Sphinx Documentation Generator.""" + + homepage = "https://pyenchant.github.io/pyenchant/" + pypi = "pyenchant/pyenchant-3.2.2.tar.gz" + git = "https://github.com/pyenchant/pyenchant.git" + + license("LGPL-2.1") + + version("3.2.2", sha256="1cf830c6614362a78aab78d50eaf7c6c93831369c52e1bb64ffae1df0341e637") + + depends_on("enchant") + depends_on("python@3.5:") + depends_on("py-setuptools") |