me
/
guix
Archived
1
0
Fork 0

gnu: Add r-restfulr.

* gnu/packages/bioconductor.scm (r-restfulr): New variable.
master
Ricardo Wurmus 2021-06-05 01:46:54 +02:00
parent ab66c9a2cd
commit ce99b4da63
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 27 additions and 0 deletions

View File

@ -3959,6 +3959,33 @@ Alignment / Map), FASTA, binary variant call (BCF) and compressed indexed
tab-delimited (tabix) files.")
(license license:expat)))
;; This is a CRAN package, but it depends on a Bioconductor package:
;; s4vectors.
(define-public r-restfulr
(package
(name "r-restfulr")
(version "0.0.13")
(source
(origin
(method url-fetch)
(uri (cran-uri "restfulr" version))
(sha256
(base32
"1dk45mzrr6ka92yjz7hfhkj12kpx1wg4szv1h1mg80mgga4ganbv"))))
(properties `((upstream-name . "restfulr")))
(build-system r-build-system)
(propagated-inputs
`(("r-rcurl" ,r-rcurl)
("r-rjson" ,r-rjson)
("r-s4vectors" ,r-s4vectors)
("r-xml" ,r-xml)
("r-yaml" ,r-yaml)))
(home-page "https://cran.r-project.org/package=restfulr")
(synopsis "R interface to RESTful web services")
(description
"This package models a RESTful service as if it were a nested R list.")
(license license:artistic2.0)))
(define-public r-rtracklayer
(package
(name "r-rtracklayer")