gnu: Add r-dtplyr.

* gnu/packages/cran.scm (r-dtplyr): New variable.
This commit is contained in:
Ricardo Wurmus 2021-05-04 07:11:02 +02:00
parent 8a3766e1d3
commit fadf5765c1
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -7176,6 +7176,41 @@ (define-public r-data-tree
finance, conversion from and to JSON, and many other applications.")
(license license:gpl2+)))
(define-public r-dtplyr
(package
(name "r-dtplyr")
(version "1.1.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "dtplyr" version))
(sha256
(base32
"0cn7vxn92dcxrnabccla6ppf5x7pxfz6pjlmamp0imfphmr1ns4r"))))
(properties `((upstream-name . "dtplyr")))
(build-system r-build-system)
(propagated-inputs
`(("r-crayon" ,r-crayon)
("r-data-table" ,r-data-table)
("r-dplyr" ,r-dplyr)
("r-ellipsis" ,r-ellipsis)
("r-glue" ,r-glue)
("r-lifecycle" ,r-lifecycle)
("r-rlang" ,r-rlang)
("r-tibble" ,r-tibble)
("r-tidyselect" ,r-tidyselect)
("r-vctrs" ,r-vctrs)))
(native-inputs
`(("r-knitr" ,r-knitr)))
(home-page "https://github.com/tidyverse/dtplyr")
(synopsis "Data Table back-end for dplyr")
(description
"This package provides a @code{data.table} backend for @code{dplyr}. The
goal of @code{dtplyr} is to allow you to write @code{dplyr} code that is
automatically translated to the equivalent, but usually much faster,
@code{data.table} code.")
(license license:expat)))
(define-public r-collapsibletree
(package
(name "r-collapsibletree")