Add latest version of py-snowballstemmer (#13294)

This commit is contained in:
Adam J. Stewart 2019-10-20 11:20:21 -05:00 committed by GitHub
parent a2e7f0e9d2
commit 2268dd9e8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,11 @@ class PySnowballstemmer(PythonPackage):
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"
url = "https://pypi.io/packages/source/s/snowballstemmer/snowballstemmer-2.0.0.tar.gz"
import_modules = ['snowballstemmer']
version('2.0.0', sha256='df3bac3df4c2c01363f3dd2cfa78cce2840a79b9f1c2d2de9ce8d31683992f52')
version('1.2.1', sha256='919f26a68b2c17a7634da993d91339e288964f93c274f1343e3bbbe2096e1128')
depends_on('py-setuptools', type='build')