diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-02-11 00:55:37 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-02-11 01:03:26 +0100 |
commit | 8cf3851512e0e2b7bcc7e5536258135a1565b658 (patch) | |
tree | ef263c581f02994ab9b72c320825f0cf223567db /gnu/packages/cran.scm | |
parent | bc9ca4fd4bb435a94706221c4ad328d4a6046667 (diff) | |
download | guix-8cf3851512e0e2b7bcc7e5536258135a1565b658.tar.gz |
gnu: r-stopwords: Update to 2.2.
* gnu/packages/cran.scm (r-stopwords): Update to 2.2. [propagated-inputs]: Remove r-desc and r-usethis.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 23f8e36864..1b3650384a 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -21548,20 +21548,18 @@ character codes as well as the UN M.49 area codes.") (define-public r-stopwords (package (name "r-stopwords") - (version "2.1") + (version "2.2") (source (origin (method url-fetch) (uri (cran-uri "stopwords" version)) (sha256 (base32 - "1g2p8gsj7xjck7idcwczgc7fmv72lzwjw00qarrj0cv44kypmiq8")))) + "1f862y30c4r0phamlp7shzkpxg0vh3i410xy0336w310hv3wqsxn")))) (properties `((upstream-name . "stopwords"))) (build-system r-build-system) (propagated-inputs - `(("r-desc" ,r-desc) - ("r-isocodes" ,r-isocodes) - ("r-usethis" ,r-usethis))) + `(("r-isocodes" ,r-isocodes))) (home-page "https://github.com/quanteda/stopwords") (synopsis "Multilingual stopword lists") (description |