mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add r-nbconvertr.
* gnu/packages/cran.scm (r-nbconvertr): New variable.
This commit is contained in:
parent
229736aa52
commit
fca68e34fb
1 changed files with 25 additions and 0 deletions
|
@ -21106,3 +21106,28 @@ (define-public r-asd
|
|||
designs with and without early outcomes for treatment selection and
|
||||
subpopulation type designs.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public r-nbconvertr
|
||||
(package
|
||||
(name "r-nbconvertr")
|
||||
(version "1.3.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "nbconvertR" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0yhmz177r1miain65vspclahhz8cg7638ldbpsw8ylgf7a60l0sg"))))
|
||||
(properties `((upstream-name . "nbconvertR")))
|
||||
(build-system r-build-system)
|
||||
(inputs
|
||||
`(("jupyter" ,python-nbconvert)
|
||||
("pandoc" ,ghc-pandoc)))
|
||||
(home-page "https://cran.r-project.org/web/packages/nbconvertR/")
|
||||
(synopsis "Vignette engine wrapping Jupyter notebooks")
|
||||
(description
|
||||
"This package calls the Jupyter script @code{nbconvert} to create
|
||||
vignettes from notebooks. Those notebooks (@code{.ipynb} files) are files
|
||||
containing rich text, code, and its output. Code cells can be edited and
|
||||
evaluated interactively.")
|
||||
(license license:gpl3)))
|
||||
|
|
Loading…
Reference in a new issue