From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36686) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eoaC4-0005JP-GR for guix-patches@gnu.org; Wed, 21 Feb 2018 14:37:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eoaBS-0007l1-1Z for guix-patches@gnu.org; Wed, 21 Feb 2018 14:36:44 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:47008) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eoaBR-0007kL-Oc for guix-patches@gnu.org; Wed, 21 Feb 2018 14:36:05 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eoaBR-0008Sq-EB for guix-patches@gnu.org; Wed, 21 Feb 2018 14:36:05 -0500 Subject: [bug#30570] [PATCH 16/16] gnu: Add python-feather-format. Resent-Message-ID: From: Leo Famulari Date: Wed, 21 Feb 2018 14:35:20 -0500 Message-Id: <535316be19c998e3e522c44e9e2f1e920b3fbfa2.1519241713.git.leo@famulari.name> In-Reply-To: <7597f2a5e819b04be0bd24566b4fcd7950abb5c1.1519241713.git.leo@famulari.name> References: <7597f2a5e819b04be0bd24566b4fcd7950abb5c1.1519241713.git.leo@famulari.name> In-Reply-To: <7597f2a5e819b04be0bd24566b4fcd7950abb5c1.1519241713.git.leo@famulari.name> References: <7597f2a5e819b04be0bd24566b4fcd7950abb5c1.1519241713.git.leo@famulari.name> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30570@debbugs.gnu.org * gnu/packages/serialization.scm (python-feather-format, python2-feather-format): New variables. --- gnu/packages/serialization.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index 58ff2a1c0..761b8c353 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -41,6 +41,7 @@ #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages cran) + #:use-module (gnu packages databases) #:use-module (gnu packages documentation) #:use-module (gnu packages lua) #:use-module (gnu packages pkg-config) @@ -460,3 +461,27 @@ game development and other performance-critical applications.") (description "Read and write feather files, a lightweight binary columnar daa store designed for maximum speed.") (license license:asl2.0))) + +(define-public python-feather-format + (package + (name "python-feather-format") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "feather-format" version)) + (sha256 + (base32 + "1adivm5w5ji4qv7hq7942vqlk8l2wgw87bdlsia771z14z3zp857")))) + (build-system python-build-system) + (propagated-inputs + `(("python-pandas" ,python-pandas) + ("python-pyarrow" ,python-pyarrow))) + (home-page "https://github.com/wesm/feather") + (synopsis "Python wrapper to the Feather file format") + (description "This package provides a Python wrapper library to the +Apache Arrow-based Feather binary columnar serialization data frame format.") + (license license:asl2.0))) + +(define-public python2-feather-format + (package-with-python2 python-feather-format)) -- 2.16.1