[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#30570] [PATCH 12/16] gnu: Add r-feather.
From: |
Leo Famulari |
Subject: |
[bug#30570] [PATCH 12/16] gnu: Add r-feather. |
Date: |
Wed, 21 Feb 2018 14:35:16 -0500 |
* gnu/packages/serialization.scm (r-feather): New variable.
---
gnu/packages/serialization.scm | 27 ++++++++++++++++++++++++++-
1 file changed, 26 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index ce389ca4a..58ff2a1c0 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -33,17 +33,20 @@
#:use-module (guix utils)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system python)
+ #:use-module (guix build-system r)
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages boost)
#:use-module (gnu packages check)
#:use-module (gnu packages compression)
+ #:use-module (gnu packages cran)
#:use-module (gnu packages documentation)
#:use-module (gnu packages lua)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
#:use-module (gnu packages perl)
- #:use-module (guix build-system python))
+ #:use-module (gnu packages statistics))
(define-public cereal
(package
@@ -435,3 +438,25 @@ to generate and parse. The two primary functions are
@code{cbor.loads} and
C#, C, Go, Java, JavaScript, PHP, and Python. It was originally created for
game development and other performance-critical applications.")
(license license:asl2.0)))
+
+(define-public r-feather
+ (package
+ (name "r-feather")
+ (version "0.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "feather" version))
+ (sha256
+ (base32
+ "1q6dbkfnkpnabq8lb6bm9ma44cfcghx2lm23pyk3vg7943wrn1pi"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-hms" ,r-hms)
+ ("r-rcpp" ,r-rcpp)
+ ("r-tibble" ,r-tibble)))
+ (home-page "https://github.com/wesm/feather")
+ (synopsis "R Bindings to the Feather API")
+ (description "Read and write feather files, a lightweight binary columnar
+daa store designed for maximum speed.")
+ (license license:asl2.0)))
--
2.16.1
- [bug#30570] [PATCH 02/16] gnu: Add python-plotly., (continued)
- [bug#30570] [PATCH 02/16] gnu: Add python-plotly., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 06/16] gnu: Add r-geosphere., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 16/16] gnu: Add python-feather-format., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 15/16] gnu: Add python-pyarrow., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 03/16] gnu: Add r-maps., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 11/16] gnu: Add r-ggmap., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 08/16] gnu: Add r-desolve., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 10/16] gnu: Add r-jpeg., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 13/16] gnu: Add google-brotli., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 04/16] gnu: Add r-mapproj., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 12/16] gnu: Add r-feather.,
Leo Famulari <=
- [bug#30570] [PATCH 09/16] gnu: Add Diversitree., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 14/16] gnu: Add apache-arrow., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 05/16] gnu: Add Rgooglemaps., Leo Famulari, 2018/02/21
- [bug#30570] [PATCH 07/16] gnu: Add r-subplex., Leo Famulari, 2018/02/21