[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/09: gnu: Add r-repmis.
From: |
guix-commits |
Subject: |
02/09: gnu: Add r-repmis. |
Date: |
Wed, 4 Oct 2023 05:04:44 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit f989150083a25b64cd848679f0ca7dca00b2a051
Author: Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
AuthorDate: Sat Mar 25 00:18:48 2023 +0100
gnu: Add r-repmis.
* gnu/packages/cran.scm (r-repmis): New variable.
---
gnu/packages/cran.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 612524e2f7..cf279ab3d2 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -3408,6 +3408,41 @@ convenience functions useful for using CSS selectors on
XML nodes. This
package is a port of the Python package @code{cssselect}.")
(license license:bsd-3)))
+(define-public r-repmis
+ (package
+ (name "r-repmis")
+ (version "0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "repmis" version))
+ (sha256
+ (base32 "0z5mjbsl24yjbl0aawr35grcal44rf2xbwv1hy7bdkms94ix79b5"))))
+ (properties `((upstream-name . "repmis")))
+ (build-system r-build-system)
+ (arguments
+ (list
+ #:phases
+ '(modify-phases %standard-phases
+ (add-before 'install 'change-home-dir
+ (lambda _
+ ;; Change from /homeless-shelter to /tmp for write permission.
+ (setenv "HOME" "/tmp"))))))
+ (propagated-inputs
+ (list r-data-table
+ r-digest
+ r-httr
+ r-plyr
+ r-r-cache))
+ (home-page "https://cran.r-project.org/package=repmis")
+ (synopsis "Miscellaneous tools for reproducible research")
+ (description
+ "This package is a colletion of tools to load R packages and
+automatically generate BibTeX files citing them as well as load and cache
+plain-text and Excel formatted data stored on GitHub, and from other
+sources.")
+ (license license:gpl3+)))
+
(define-public r-reprex
(package
(name "r-reprex")
- branch master updated (d0aaa5aacf -> 273ee56bc2), guix-commits, 2023/10/04
- 05/09: gnu: Add r-apcomplex., guix-commits, 2023/10/04
- 08/09: gnu: Add r-arraymvout., guix-commits, 2023/10/04
- 09/09: gnu: Add r-arrayquality., guix-commits, 2023/10/04
- 06/09: gnu: Add r-mdqc., guix-commits, 2023/10/04
- 02/09: gnu: Add r-repmis.,
guix-commits <=
- 01/09: gnu: Add r-anota2seq., guix-commits, 2023/10/04
- 07/09: gnu: Add r-parody., guix-commits, 2023/10/04
- 04/09: gnu: Add r-org-sc-sgd-db., guix-commits, 2023/10/04
- 03/09: gnu: Add r-hybridmtest., guix-commits, 2023/10/04