diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-07-05 16:08:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-05 16:08:57 +0200 |
commit | 8e37c30e2f783ba166c29936598bb48fdb052d15 (patch) | |
tree | e745a032c824d6313d446ad355cdb1c08b0525a6 | |
parent | 04289b20096368aebdcdfcd5859038377034d269 (diff) | |
download | spack-8e37c30e2f783ba166c29936598bb48fdb052d15.tar.gz spack-8e37c30e2f783ba166c29936598bb48fdb052d15.tar.bz2 spack-8e37c30e2f783ba166c29936598bb48fdb052d15.tar.xz spack-8e37c30e2f783ba166c29936598bb48fdb052d15.zip |
py-whoosh: add new package (#24707)
-rw-r--r-- | var/spack/repos/builtin/packages/py-whoosh/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-whoosh/package.py b/var/spack/repos/builtin/packages/py-whoosh/package.py new file mode 100644 index 0000000000..e61b07733a --- /dev/null +++ b/var/spack/repos/builtin/packages/py-whoosh/package.py @@ -0,0 +1,17 @@ +# Copyright 2013-2021 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 PyWhoosh(PythonPackage): + """Fast, pure-Python full text indexing, search, and spell checking library.""" + + homepage = "https://whoosh.readthedocs.io" + pypi = "Whoosh/Whoosh-2.7.4.tar.gz" + + version('2.7.4', sha256='7ca5633dbfa9e0e0fa400d3151a8a0c4bec53bd2ecedc0a67705b17565c31a83') + + depends_on('py-setuptools', type='build') |