guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/324: gnu: Add r-restfulr.


From: guix-commits
Subject: 07/324: gnu: Add r-restfulr.
Date: Sat, 5 Jun 2021 03:14:25 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit ce99b4da633c79352dfaf5ae2c1c2bab3d773908
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Jun 5 01:46:54 2021 +0200

    gnu: Add r-restfulr.
    
    * gnu/packages/bioconductor.scm (r-restfulr): New variable.
---
 gnu/packages/bioconductor.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 7a584e4..56906bd 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]