guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 3/5] gnu: Add python-snowballstemmer.


From: 宋文武
Subject: Re: [PATCH 3/5] gnu: Add python-snowballstemmer.
Date: Sat, 02 Jul 2016 20:55:39 +0800
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)

Leo Famulari <address@hidden> writes:

> * 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 4eed92f..73312e8 100644
> --- a/gnu/packages/python.scm
> +++ b/gnu/packages/python.scm
> @@ -9746,3 +9746,25 @@ 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")
Missing period.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]