diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-01-01 12:58:09 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-01-01 13:33:02 +0100 |
commit | 1a1ba087584337e94a5d0228c84a7340cb51c805 (patch) | |
tree | 2b37420aab75e092b06bb97b2ccf1ea02e484848 | |
parent | be9d0ab2a5300768f2bf8f1ac21110de0a152de2 (diff) | |
download | guix-1a1ba087584337e94a5d0228c84a7340cb51c805.tar guix-1a1ba087584337e94a5d0228c84a7340cb51c805.tar.gz |
gnu: Add r-archivist.
* gnu/packages/cran.scm (r-archivist): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index c8d9dad9b6..c4b37e6cf6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19084,3 +19084,39 @@ AFT models.") using the @code{parallel} package for instance) using file locks. It supports both exclusive and shared locking.") (license license:asl2.0))) + +(define-public r-archivist + (package + (name "r-archivist") + (version "2.3.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "archivist" version)) + (sha256 + (base32 + "1i11hrcq1910jgd6diw6h3sxx624v57zjianm49pqvb2dvd0b8y7")))) + (properties `((upstream-name . "archivist"))) + (build-system r-build-system) + (propagated-inputs + `(("r-dbi" ,r-dbi) + ("r-digest" ,r-digest) + ("r-flock" ,r-flock) + ("r-httr" ,r-httr) + ("r-lubridate" ,r-lubridate) + ("r-magrittr" ,r-magrittr) + ("r-rcurl" ,r-rcurl) + ("r-rsqlite" ,r-rsqlite))) + (home-page "https://pbiecek.github.io/archivist/") + (synopsis "Tools for storing, restoring and searching for R objects") + (description + "Data exploration and modelling is a process in which a lot of data +artifacts are produced. Artifacts like: subsets, data aggregates, plots, +statistical models, different versions of data sets and different versions of +results. Archivist helps to store and manage artifacts created in R. It +allows you to store selected artifacts as binary files together with their +metadata and relations. Archivist allows sharing artifacts with others. It +can look for already created artifacts by using its class, name, date of the +creation or other properties. It also makes it easy to restore such +artifacts.") + (license license:gpl2))) |