summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-whoosh/package.py
blob: ea42ad36ee720bfaea050c13b89c40b3da266564 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright 2013-2022 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 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')