diff options
-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') |