gnu: Add r-cyclocomp.

* gnu/packages/cran.scm (r-cyclocomp): New variable.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
Nicolò Balzarotti 2019-12-11 09:19:47 +01:00 committed by Ricardo Wurmus
parent f00da07471
commit bd538a031e
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -14740,6 +14740,34 @@ (define-public r-xmlparsedata
@code{XPath}, and is easier to manipulate in general.")
(license license:expat)))
(define-public r-cyclocomp
(package
(name "r-cyclocomp")
(version "1.1.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "cyclocomp" version))
(sha256
(base32
"0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
(properties `((upstream-name . "cyclocomp")))
(build-system r-build-system)
(propagated-inputs
`(("r-callr" ,r-callr)
("r-crayon" ,r-crayon)
("r-desc" ,r-desc)
("r-remotes" ,r-remotes)
("r-withr" ,r-withr)))
(home-page "https://github.com/MangoTheCat/cyclocomp")
(synopsis "Cyclomatic complexity of R code")
(description
"Cyclomatic complexity is a software metric, used to indicate the
complexity of a program. It is a quantitative measure of the number of
linearly independent paths through a program's source code. This package
provides tools to compute this metric.")
(license license:expat)))
(define-public r-sctransform
(package
(name "r-sctransform")