diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-12-12 13:50:16 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-12-15 16:13:06 +0100 |
commit | 4d272fa3a9f2e156314d88685336573a69e90678 (patch) | |
tree | 9dd461cf8e01e70c68308a44609f01e1b255cd76 | |
parent | af28dc137f7274740219f593860842ef4942e420 (diff) | |
download | guix-4d272fa3a9f2e156314d88685336573a69e90678.tar.gz |
gnu: r-spacyr: Update to 1.3.0.
* gnu/packages/cran.scm (r-spacyr): Update to 1.3.0. [native-inputs]: Add r-r-rsp. Change-Id: I999db8ad92b2d0799ffa4350847980db30c75409
-rw-r--r-- | gnu/packages/cran.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8aad323324..cdfdc5cd90 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -30912,18 +30912,20 @@ analysis and natural language processing.") (define-public r-spacyr (package (name "r-spacyr") - (version "1.2.1") + (version "1.3.0") (source (origin (method url-fetch) (uri (cran-uri "spacyr" version)) (sha256 (base32 - "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw")))) + "1z4nx8phrc0l73xic2lkff03a54kjw343425h5mm2afz6zidcmf4")))) (properties `((upstream-name . "spacyr"))) (build-system r-build-system) (propagated-inputs (list r-data-table r-reticulate)) + (native-inputs + (list r-r-rsp)) (home-page "https://spacyr.quanteda.io") (synopsis "R wrapper for the spaCy NLP library") (description |