diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-03-19 10:00:48 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-03-19 10:06:27 +0100 |
commit | 99de0bd1dc3e1d5d7e826a526ae1ce7d97441048 (patch) | |
tree | cc989a9563bfa62cc0574982e9448182dea4dfa8 | |
parent | b8168e894547af5650300457810848ae8f65a357 (diff) | |
download | patches-99de0bd1dc3e1d5d7e826a526ae1ce7d97441048.tar patches-99de0bd1dc3e1d5d7e826a526ae1ce7d97441048.tar.gz |
gnu: r-recipes: Update to 0.1.10.
* gnu/packages/cran.scm (r-recipes): Update to 0.1.10.
[native-inputs]: Add r-knitr.
-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 350e439b41..7893219a0c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -3098,14 +3098,14 @@ provides a one-row summary of model-level statistics.") (define-public r-recipes (package (name "r-recipes") - (version "0.1.9") + (version "0.1.10") (source (origin (method url-fetch) (uri (cran-uri "recipes" version)) (sha256 (base32 - "1fmnka583sqm6v5bhxbllb4cd5xfqbf268aij2xgxiwckv3c0ynm")))) + "11f96aanrzi2v6cn49fhvf9y4cmhra63wcy6nvpv6hcfaqqmwd2g")))) (build-system r-build-system) (propagated-inputs `(("r-dplyr" ,r-dplyr) @@ -3123,6 +3123,8 @@ provides a one-row summary of model-level statistics.") ("r-tidyselect" ,r-tidyselect) ("r-timedate" ,r-timedate) ("r-withr" ,r-withr))) + (native-inputs + `(("r-knitr" ,r-knitr))) (home-page "https://github.com/topepo/recipes") (synopsis "Preprocessing tools to create design matrices") (description |