mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-snowballstemmer: Update to 2.2.0.
* gnu/packages/python-xyz.scm (python-snowballstemmer): Update to 2.2.0. Improve style. [build-system]: Swap to pyproject-build-system. [arguments]<tests>: Switch them off as not provided. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: Ifbef2578990eb4a3e3a498922de8852fadbdc5b7
This commit is contained in:
parent
a33c8eadd0
commit
35a6ca0660
1 changed files with 19 additions and 13 deletions
|
@ -24014,25 +24014,31 @@ numbers, real numbers, mixed types and more, and comes with a shell command
|
||||||
between the different Python versions.")
|
between the different Python versions.")
|
||||||
(license license:psfl)))
|
(license license:psfl)))
|
||||||
|
|
||||||
|
;; XXX: The last time updated in 2015, consider to remove it when nothing is
|
||||||
|
;; depend on it.
|
||||||
(define-public python-snowballstemmer
|
(define-public python-snowballstemmer
|
||||||
(package
|
(package
|
||||||
(name "python-snowballstemmer")
|
(name "python-snowballstemmer")
|
||||||
(version "2.0.0")
|
(version "2.2.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "snowballstemmer" version))
|
(method url-fetch)
|
||||||
(sha256
|
(uri (pypi-uri "snowballstemmer" version))
|
||||||
(base32
|
(sha256
|
||||||
"0ligk61idlz8kkgd5hpip5whm172riwglb6xydii7h62yhysqfyz"))))
|
(base32 "1ccwy75i0f5yi1vy6fyvr1gf43ydhjani45mswm43ls7hpmnvc89"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(;; No tests exist
|
(list
|
||||||
#:tests? #f))
|
#:tests? #f)) ; no tests
|
||||||
|
(native-inputs
|
||||||
|
(list python-setuptools
|
||||||
|
python-wheel))
|
||||||
(home-page "https://github.com/shibukawa/snowball_py")
|
(home-page "https://github.com/shibukawa/snowball_py")
|
||||||
(synopsis "Snowball stemming library collection for Python")
|
(synopsis "Snowball stemming library collection for Python")
|
||||||
(description "This package provides 16 word stemmer algorithms generated
|
(description
|
||||||
from Snowball algorithms. It includes the 15 original ones plus the Poerter
|
"This package provides 16 word stemmer algorithms generated from Snowball
|
||||||
English stemmer.")
|
algorithms. It includes the 15 original ones plus the Poerter English
|
||||||
|
stemmer.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-setproctitle
|
(define-public python-setproctitle
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue