gnu: Add r-rslurm.

* gnu/packages/cran.scm (r-rslurm): New variable.
This commit is contained in:
Ricardo Wurmus 2021-09-07 11:42:17 +02:00
parent 62381dce86
commit ec997158db
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -11745,6 +11745,29 @@ (define-public r-cmdfun
inside R when they might usually leave to execute non-R software.")
(license license:expat)))
(define-public r-rslurm
(package
(name "r-rslurm")
(version "0.6.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "rslurm" version))
(sha256
(base32
"0fn2na8prsaxa03x5wi3105gpsxc35qvgmik7wy3nylvx4wdfv9g"))))
(properties `((upstream-name . "rslurm")))
(build-system r-build-system)
(propagated-inputs `(("r-whisker" ,r-whisker)))
(native-inputs `(("r-knitr" ,r-knitr)))
(home-page "http://cyberhelp.sesync.org/rslurm/")
(synopsis "Submit R calculations to a Slurm cluster")
(description
"This package provides functions that simplify submitting R scripts to a
Slurm workload manager, in part by automating the division of embarrassingly
parallel calculations across cluster nodes.")
(license license:gpl3)))
(define-public r-weights
(package
(name "r-weights")