diff options
| author | Vinicius Monego <monego@posteo.net> | 2025-08-02 11:49:25 -0300 |
|---|---|---|
| committer | Vinicius Monego <monego@posteo.net> | 2025-08-04 21:34:22 -0300 |
| commit | a97df9044eebae5d0dfc1670a930233b4f27aefd (patch) | |
| tree | 451d14d4a516dff65da204650956f087f92b7f15 /gnu/packages/python-xyz.scm | |
| parent | 39337c300e207c8a1a59cb366ea1ccb59e992fb7 (diff) | |
gnu: python-nltk: Improve style.
* gnu/packages/python-xyz.scm (python-nltk): Run guix style.
[home-page]: Follow redirect.
[description]: Start sentence with a noun.
Change-Id: Ifb9cc4d069326f0c12cb6e3ab23540469d22e096
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2cf3bf7a7f..403f847659 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -24696,27 +24696,27 @@ JSON) codec.") (package (name "python-nltk") (version "3.6.2") - (source (origin - (method url-fetch) - (uri (pypi-uri "nltk" version ".zip")) - (sha256 - (base32 - "1sq32lwgij9h8rsksymnxxr7bqfw3vgx5ijw4azbj6k2xnmmdmap")))) + (source + (origin + (method url-fetch) + (uri (pypi-uri "nltk" version ".zip")) + (sha256 + (base32 "1sq32lwgij9h8rsksymnxxr7bqfw3vgx5ijw4azbj6k2xnmmdmap")))) (build-system python-build-system) (arguments - '(;; The tests require some extra resources to be downloaded. - ;; TODO Try packaging these resources. - #:tests? #f)) - (propagated-inputs - (list python-click python-joblib python-regex python-tqdm)) - (native-inputs - (list unzip)) - (home-page "http://nltk.org/") + ;; Tests require some extra resources to be downloaded. + ;; TODO Try packaging these resources. + '(#:tests? #f)) + (propagated-inputs (list python-click python-joblib python-regex + python-tqdm)) + (native-inputs (list unzip)) + (home-page "https://www.nltk.org/") (synopsis "Natural Language Toolkit") - (description "It provides interfaces to over 50 corpora and lexical - resources such as WordNet, along with a suite of text processing libraries - for classification, tokenization, stemming, tagging, parsing, and semantic - reasoning, wrappers for natural language processing libraries.") + (description + "NLTK provides interfaces to over 50 corpora and lexical resources such as +WordNet, along with a suite of text processing libraries for classification, +tokenization, stemming, tagging, parsing, and semantic reasoning, wrappers for +natural language processing libraries.") (license license:asl2.0))) (define-public python-pymongo |
