mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-20 05:37:34 -05:00
gnu: Add r-webutils
* gnu/packages/cran.scm (r-webutils): New variable.
This commit is contained in:
parent
b05a1eb5e3
commit
c5baff1796
1 changed files with 24 additions and 0 deletions
|
@ -29798,3 +29798,27 @@ (define-public r-rmisc
|
|||
(description "The Rmisc library contains functions for data analysis and
|
||||
utility operations.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public r-webutils
|
||||
(package
|
||||
(name "r-webutils")
|
||||
(version "1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "webutils" version))
|
||||
(sha256
|
||||
(base32 "16a6ds0fnb6y8i1r9ba1hf1ydb53am57s070b3hi5jmrs84b9qik"))))
|
||||
(properties `((upstream-name . "webutils")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-curl" ,r-curl)
|
||||
("r-jsonlite" ,r-jsonlite)))
|
||||
(home-page "https://github.com/jeroen/webutils")
|
||||
(synopsis "Utility functions for developing web applications")
|
||||
(description
|
||||
"This package parses HTTP request data in @code{application/json},
|
||||
@code{multipart/form-data}, or @code{application/x-www-form-urlencoded}
|
||||
format. It includes an example of hosting and parsing HTML form data in R
|
||||
using either @code{httpuv} or @code{Rhttpd}.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue