guix-patches
[Top][All Lists]
Advanced

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

[bug#37602] [PATCH] gnu: Add r-oai.


From: Wiktor Żelazny
Subject: [bug#37602] [PATCH] gnu: Add r-oai.
Date: Thu, 3 Oct 2019 15:51:30 +0200

From: Wiktor Żelazny <address@hidden>

* gnu/packages/cran.scm (r-oai): new variable.
---
 gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 3a9a605efe..479f5f4e46 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -15637,3 +15637,29 @@ unique identifiers, and whether it is a certain 
length.  In addition,
 files and to efficiently import multiple tabular data files into one
 data.table.")
     (license license:gpl3)))
+
+(define-public r-oai
+  (package
+     (name "r-oai")
+     (version "0.3.0")
+     (source (origin
+       (method url-fetch)
+       (uri (cran-uri "oai" version))
+       (sha256
+         (base32
+           "1ipw9bq3ra66d1ddj1rylyyd20mlcb2i7phzhywra53s1fdifq1g"))))
+     (build-system r-build-system)
+     (propagated-inputs
+       `(("r-xml2" ,r-xml2)
+         ("r-httr" ,r-httr)
+         ("r-plyr" ,r-plyr)
+         ("r-stringr" ,r-stringr)
+         ("r-tibble" ,r-tibble)))
+     (home-page "https://github.com/ropensci/oai/";)
+     (synopsis "General purpose OAI-PMH services client")
+     (description "@code{oai} provides a general purpose client to work with
+any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
+service.  Functions are provided to work with the OAI-PMH verbs:
+@code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
+@code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
+     (license license:expat)))
-- 
2.23.0






reply via email to

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