mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: r-sessioninfo: Add missing input.
* gnu/packages/cran.scm (r-sessioninfo)[native-inputs]: Add r-mockery. [arguments]: Add phase 'delete-bad-tests. Change-Id: Ib45f9043d985a040d6f296f77166fb45048769cb
This commit is contained in:
parent
7e9aa79900
commit
03d26034e3
1 changed files with 11 additions and 1 deletions
|
@ -20801,9 +20801,19 @@ (define-public r-sessioninfo
|
|||
(base32
|
||||
"1jy7n37qnrb4fgzmn8s8yf7kv29yw27x8zklwf8qdb2kgj2q6qpm"))))
|
||||
(build-system r-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
(add-after 'unpack 'delete-bad-tests
|
||||
(lambda _
|
||||
;; One test attempts to connect to a website
|
||||
(delete-file "tests/testthat/test-diff.R")
|
||||
;; This one fails for silly reasons.
|
||||
(delete-file "tests/testthat/test-platform-info.R"))))))
|
||||
(propagated-inputs
|
||||
(list r-cli))
|
||||
(native-inputs (list r-testthat))
|
||||
(native-inputs (list r-mockery r-testthat))
|
||||
(home-page "https://github.com/r-lib/sessioninfo#readme")
|
||||
(synopsis "R session information")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue