gnu: Add r-checkmate.

* gnu/packages/statistics.scm (r-checkmate): New variable.
This commit is contained in:
Ricardo Wurmus 2016-09-21 22:45:29 +02:00 committed by Ricardo Wurmus
parent 0d90462fa3
commit 929d4aaea1
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -1633,6 +1633,28 @@ (define-public r-backports
R version.")
(license license:gpl2+)))
(define-public r-checkmate
(package
(name "r-checkmate")
(version "1.8.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "checkmate" version))
(sha256
(base32
"1nqyi58jl33af82y8kw8iy9xbna2080y1khhy90kf6lim6q74024"))))
(build-system r-build-system)
(propagated-inputs
`(("r-backports" ,r-backports)))
(home-page "https://github.com/mllg/checkmate")
(synopsis "Fast and versatile argument checks")
(description
"This package provides tests and assertions to perform frequent argument
checks. A substantial part of the package was written in C to minimize any
worries about execution time overhead.")
(license license:bsd-3)))
(define-public r-brew
(package
(name "r-brew")