summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-snowballstemmer/package.py
blob: 19e3d99afe0c8952716b93b8b4de31f44f67c113 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2018 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 PySnowballstemmer(PythonPackage):
    """This package provides 16 stemmer algorithms (15 + Poerter
    English stemmer) generated from Snowball algorithms."""

    homepage = "https://github.com/shibukawa/snowball_py"
    url      = "https://pypi.io/packages/source/s/snowballstemmer/snowballstemmer-1.2.1.tar.gz"

    import_modules = ['snowballstemmer']

    version('1.2.1', '643b019667a708a922172e33a99bf2fa')