gnu: Add r-tidyft.

* gnu/packages/cran.scm (r-tidyft): New variable.
This commit is contained in:
Navid Afkhami 2023-06-23 13:48:52 +00:00 committed by Ricardo Wurmus
parent cd7900c71f
commit 4ef4de633c
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3008,6 +3008,28 @@ (define-public r-vegan
data types as well.") data types as well.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public r-tidyft
(package
(name "r-tidyft")
(version "0.5.7")
(source (origin
(method url-fetch)
(uri (cran-uri "tidyft" version))
(sha256
(base32
"00qcsr2sx8fwyil384vgppx0q72qjrkj7h5nv4mdxdi8f9h6ph2r"))))
(properties `((upstream-name . "tidyft")))
(build-system r-build-system)
(propagated-inputs (list r-data-table r-fst r-stringr))
(native-inputs (list r-knitr))
(home-page "https://github.com/hope-data-science/tidyft")
(synopsis "Fast and memory efficient data operations in tidy syntax")
(description "Tidyft is an extension of @code{data.table}. It uses
modifification by reference whenever possible. This toolkit is designed for
big data analysis in high-performance desktop or laptop computers. The syntax
of the package is similar or identical to tidyverse.")
(license license:expat)))
(define-public r-tidyverse (define-public r-tidyverse
(package (package
(name "r-tidyverse") (name "r-tidyverse")