~ruther/guix-local

10344b4faf6a68c4fc7360e1099ef56d9fc1a806 — Ricardo Wurmus 2 months ago d53af4d
gnu: r-reformulas: Update to 0.4.3.1.

* gnu/packages/cran.scm (r-reformulas): Update to 0.4.3.1.
[arguments]: Add phase 'delete-bad-tests.
[native-inputs]: Add r-testthat and r-tinytest.

Change-Id: I18af84e0581289574b6dde003e7b13f701293907
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
1 files changed, 13 insertions(+), 3 deletions(-)

M gnu/packages/cran.scm
M gnu/packages/cran.scm => gnu/packages/cran.scm +13 -3
@@ 26706,16 26706,26 @@ splice site positions.")
(define-public r-reformulas
  (package
    (name "r-reformulas")
    (version "0.4.2")
    (version "0.4.3.1")
    (source
     (origin
       (method url-fetch)
       (uri (cran-uri "reformulas" version))
       (sha256
        (base32 "0qb42wzcm68mqqnri8s7bch4rkf28p3d833s6b8ibipk79hhc8kw"))))
    (properties `((upstream-name . "reformulas")))
        (base32 "0yiaa77kij1vl0s38znlg9w3p7jd2qafl58ppgqs1r5js0v5k82b"))))
    (properties
     '((upstream-name . "reformulas")))
    (build-system r-build-system)
    (arguments
     (list
      #:phases
      '(modify-phases %standard-phases
         (add-after 'unpack 'delete-bad-tests
           (lambda _
             ;; These tests require r-lme4, creating a dependency cycle.
             (delete-file "inst/tinytest/test_mkReTrms.R"))))))
    (propagated-inputs (list r-matrix r-rdpack))
    (native-inputs (list r-testthat r-tinytest))
    (home-page "https://github.com/bbolker/reformulas")
    (synopsis "Machinery for processing random effect formulas")
    (description