1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: r-rcppml: Update to 0.3.7.1.

* gnu/packages/cran.scm (r-rcppml): Update to 0.3.7.1.
[arguments]: Delete phase 'disable-bad-tests.
[native-inputs]: Add r-nnlm.

Change-Id: I508da20cfc16cd5655f0d01712f9970b3630e326
This commit is contained in:
Ricardo Wurmus
2026-03-11 14:41:36 +01:00
parent 02e6a8fd5d
commit d67c6db5d2

View File

@@ -17608,24 +17608,17 @@ illustration.")
(define-public r-rcppml
(package
(name "r-rcppml")
(version "0.3.7")
(version "0.3.7.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "RcppML" version))
(sha256
(base32 "1ih8i7i6m221iw227mnl3rvnaw2l53h8fpnc4f8yn9sm10anap1j"))))
(base32 "0jxfi8ignrh3jgjn51fl6igzw1rclzbk36y218klnl1nnib2abls"))))
(properties `((upstream-name . "RcppML")))
(build-system r-build-system)
(arguments
(list
#:phases
'(modify-phases %standard-phases
(add-after 'unpack 'disable-bad-tests
;; It is unclear why these fail.
(lambda _ (delete-file "tests/testthat/test_bipartition.R"))))))
(propagated-inputs (list r-matrix r-rcpp r-rcppeigen))
(native-inputs (list r-knitr r-testthat))
(native-inputs (list r-knitr r-nnlm r-testthat))
(home-page "https://github.com/zdebruine/RcppML")
(synopsis "Rcpp machine learning library")
(description