diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-17 17:47:58 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-04-22 11:29:28 +0200 |
commit | f43461385081176f31bb31c4ddc42c813e19a3f7 (patch) | |
tree | f2e953d0146e142afa54418db425fc1df73dc3bd | |
parent | 1831f6c790ba0d1f0bede25a0a78cc41ed54d5ef (diff) | |
download | guix-f43461385081176f31bb31c4ddc42c813e19a3f7.tar.gz guix-f43461385081176f31bb31c4ddc42c813e19a3f7.zip |
gnu: r-uwot: Update to 0.2.1.
* gnu/packages/cran.scm (r-uwot): Update to 0.2.1.
[native-inputs]: Add r-knitr.
Change-Id: Ife200a7ee6316f7accdb596e8bdb709b65461ba2
-rw-r--r-- | gnu/packages/cran.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index e8d380becb..00a137ec56 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -26774,14 +26774,14 @@ in R, including a translation of the original algorithm into R.") (define-public r-uwot (package (name "r-uwot") - (version "0.1.16") + (version "0.2.1") (source (origin (method url-fetch) (uri (cran-uri "uwot" version)) (sha256 (base32 - "0j4f7vnb3mwf6p4nhg2limy7i32qrcj2gxbs8wsq9c6xxpcs0qsz")))) + "1gg21kxm4qq0i0gc6jg5k37nnyxj8652zf4jp95ffb9xsn22gpvc")))) (build-system r-build-system) (propagated-inputs (list r-dqrng @@ -26791,6 +26791,7 @@ in R, including a translation of the original algorithm into R.") r-rcpp r-rcppannoy r-rcppprogress)) + (native-inputs (list r-knitr)) (home-page "https://github.com/jlmelville/uwot") (synopsis "Uniform manifold approximation and projection") (description |