gnu: r-modelr: Update to 0.1.8.

* gnu/packages/cran.scm (r-modelr): Update to 0.1.8.
[propagated-inputs]: Remove r-dplyr; add r-vctrs.
This commit is contained in:
Ricardo Wurmus 2020-06-11 14:37:51 +02:00
parent b0e813f65a
commit 55d34bf216
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -602,24 +602,24 @@ (define-public r-readxl
(define-public r-modelr
(package
(name "r-modelr")
(version "0.1.7")
(version "0.1.8")
(source
(origin
(method url-fetch)
(uri (cran-uri "modelr" version))
(sha256
(base32
"1nln33ajad0c917hmal4v6fbw8rncsch9xz5sifqfw6wgqjx9yy6"))))
"1i31nff7bqibk6r4hhd4j1vzwbyaf8493v0bjaagn36njmysfnw2"))))
(build-system r-build-system)
(propagated-inputs
`(("r-broom" ,r-broom)
("r-dplyr" ,r-dplyr)
("r-magrittr" ,r-magrittr)
("r-purrr" ,r-purrr)
("r-rlang" ,r-rlang)
("r-tibble" ,r-tibble)
("r-tidyr" ,r-tidyr)
("r-tidyselect" ,r-tidyselect)))
("r-tidyselect" ,r-tidyselect)
("r-vctrs" ,r-vctrs)))
(home-page "https://github.com/tidyverse/modelr")
(synopsis "Helper functions for modelling in pipelines")
(description