me
/
guix
Archived
1
0
Fork 0

gnu: Add r-dynutils.

* gnu/packages/cran.scm (r-dynutils): New variable.
Ricardo Wurmus 2022-02-22 18:29:35 +01:00
parent 630a059b1b
commit 63e8b84528
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 35 additions and 0 deletions

View File

@ -7643,6 +7643,41 @@ contain lags, diffs and missing values.")
;; Any GPL version.
(license license:gpl2+)))
(define-public r-dynutils
(package
(name "r-dynutils")
(version "1.0.9")
(source
(origin
(method url-fetch)
(uri (cran-uri "dynutils" version))
(sha256
(base32 "1pcj4igaw1g898xb42kcpzfmqy80xai5ki5bpnkf8hg738wm00qz"))))
(properties `((upstream-name . "dynutils")))
(build-system r-build-system)
(propagated-inputs
(list r-assertthat
r-crayon
r-desc
r-dplyr
r-magrittr
r-matrix
r-proxyc
r-purrr
r-rcpp
r-remotes
r-stringr
r-tibble))
(native-inputs (list r-knitr))
(home-page "https://github.com/dynverse/dynutils")
(synopsis "Common functionality for the dynverse packages")
(description
"This package provides common functionality for the
@url{https://dynverse.org,dynverse} packages. dynverse is created to support
the development, execution, and benchmarking of trajectory inference
methods.")
(license license:expat)))
(define-public r-catdap
(package
(name "r-catdap")