mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-20 05:37:34 -05:00
gnu: Add r-datawizard.
* gnu/packages/cran.scm (r-datawizard): New variable.
This commit is contained in:
parent
9ac9bc6051
commit
f39deacd21
1 changed files with 23 additions and 0 deletions
|
@ -184,6 +184,29 @@ (define-public r-curry
|
|||
etc.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-datawizard
|
||||
(package
|
||||
(name "r-datawizard")
|
||||
(version "0.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "datawizard" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1fc27arvm6ks65kl9nrl2vnprpz7j8d0r2yassgxnnvr3p3ba043"))))
|
||||
(properties `((upstream-name . "datawizard")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-insight" ,r-insight)))
|
||||
(home-page "https://easystats.github.io/datawizard/")
|
||||
(synopsis "Easy data wrangling")
|
||||
(description
|
||||
"This package provides a lightweight package to easily manipulate,
|
||||
clean, transform, and prepare your data for analysis. It also forms the data
|
||||
wrangling backend for the packages in the @code{easystats} ecosystem.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public r-diffobj
|
||||
(package
|
||||
(name "r-diffobj")
|
||||
|
|
Loading…
Reference in a new issue