From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH 1/5] gnu: Add python-snowballstemmer. Date: Fri, 7 Oct 2016 12:32:46 +0200 Message-ID: <20161007103250.24046-2-dannym@scratchpost.org> References: <20161007103250.24046-1-dannym@scratchpost.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53607) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bsSSc-0006Re-Cv for guix-devel@gnu.org; Fri, 07 Oct 2016 06:33:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bsSSY-00029Z-5i for guix-devel@gnu.org; Fri, 07 Oct 2016 06:33:01 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:38401) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bsSSX-00026z-Ut for guix-devel@gnu.org; Fri, 07 Oct 2016 06:32:58 -0400 In-Reply-To: <20161007103250.24046-1-dannym@scratchpost.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/python.scm (python-snowballstemmer): New variable. --- gnu/packages/python.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index cf86c71..d8cb7d1 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -10990,3 +10990,27 @@ with an associated set of resolve methods that know how to fetch data.") provide extendible implementations of common aspects of a cloud so that you can focus on building massively scalable web applications.") (license license:expat))) + +(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 + `(;; No tests exist + #:tests? #f)) + (home-page + "https://github.com/shibukawa/snowball_py") + (synopsis + "16 stemmer algorithms (15 + Poerter English stemmer)") + (description + "This package provides 16 stemmer algorithms (15 + Poerter English +stemmer) generated from Snowball algorithms.") + (license license:bsd-3)))