diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-05-04 07:13:07 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-05-04 07:27:45 +0200 |
commit | 58327ba184099ced60b15053cdde7d048af415ba (patch) | |
tree | a0471118a10290e49557854ea53b35c1e3545051 /gnu/packages | |
parent | c2cc32c88ae237ff2854ff65a153af05b2a79a9d (diff) | |
download | guix-58327ba184099ced60b15053cdde7d048af415ba.tar guix-58327ba184099ced60b15053cdde7d048af415ba.tar.gz |
gnu: r-reticulate: Update to 1.20.
* gnu/packages/cran.scm (r-reticulate): Update to 1.20.
[propagated-inputs]: Add r-png and r-withr.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 7060b43558..ef71c15f4b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7564,21 +7564,23 @@ obtain a better initial configuration in non-metric MDS.") (define-public r-reticulate (package (name "r-reticulate") - (version "1.18") + (version "1.20") (source (origin (method url-fetch) (uri (cran-uri "reticulate" version)) (sha256 (base32 - "04w5c9jfxakb4rr2qjynxgagb42khsja3y4dwgxywiplb1d8agxk")))) + "0ay8cb0d3lj702aw338lkc7sxj9j05izji3waww1z0lph16406bh")))) (build-system r-build-system) (inputs `(("python" ,python))) (propagated-inputs `(("r-rappdirs" ,r-rappdirs) ("r-jsonlite" ,r-jsonlite) ("r-matrix" ,r-matrix) - ("r-rcpp" ,r-rcpp))) + ("r-png" ,r-png) + ("r-rcpp" ,r-rcpp) + ("r-withr" ,r-withr))) (native-inputs `(("r-knitr" ,r-knitr))) (home-page "https://github.com/rstudio/reticulate") |