[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/11: gnu: Add python-snowballstemmer.
From: |
Leo Famulari |
Subject: |
09/11: gnu: Add python-snowballstemmer. |
Date: |
Tue, 12 Jul 2016 22:27:09 +0000 (UTC) |
lfam pushed a commit to branch python-updates
in repository guix.
commit 88126d1a6ede7d252c637522cc3d1b4481b381f0
Author: Leo Famulari <address@hidden>
Date: Fri Jul 1 17:40:02 2016 -0400
gnu: Add python-snowballstemmer.
* gnu/packages/python.scm (python-snowballstemmer,
python2-snowballstemmer): New
variables.
---
gnu/packages/python.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index cf0efa7..19c0e5b 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -9796,3 +9796,25 @@ the default Sphinx theme.")
(native-inputs
`(("python2-setuptools" ,python2-setuptools)
,@(package-native-inputs base))))))
+
+(define-public python-snowballstemmer
+ (package
+ (name "python-snowballstemmer")
+ (version "1.2.1")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "snowballstemmer" version))
+ (sha256
+ (base32
+ "0a0idq4y5frv7qsg2x62jd7rd272749xk4x99misf5rcifk2d7wi"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f)) ; no test suite
+ (synopsis "Snowball stemming library collection for Python")
+ (description "This package provides 16 stemmer algorithms generated from
+Snowball algorithms.")
+ (home-page "https://github.com/shibukawa/snowball_py")
+ (license bsd-2)))
+
+(define-public python2-snowballstemmer
+ (package-with-python2 python-snowballstemmer))
- branch python-updates created (now 11fbc45), Leo Famulari, 2016/07/12
- 05/11: gnu: python-pytest-runner: Update to 2.8., Leo Famulari, 2016/07/12
- 03/11: gnu: python-scripttest: Disable tests., Leo Famulari, 2016/07/12
- 02/11: gnu: python-pip: Disable tests., Leo Famulari, 2016/07/12
- 06/11: gnu: python-cryptopgraphy: Update to 1.4., Leo Famulari, 2016/07/12
- 07/11: gnu: Add python-imagesize., Leo Famulari, 2016/07/12
- 09/11: gnu: Add python-snowballstemmer.,
Leo Famulari <=
- 10/11: gnu: python-sphinx: Update to 1.4.4., Leo Famulari, 2016/07/12
- 01/11: gnu: python-virtualenv: Disable tests., Leo Famulari, 2016/07/12
- 04/11: gnu: python-pytest: Update to 2.9.2., Leo Famulari, 2016/07/12
- 08/11: gnu: Add python-alabaster., Leo Famulari, 2016/07/12
- 11/11: gnu: python-sphinx-rtd-theme: Update to 0.1.9., Leo Famulari, 2016/07/12