guix-commits
[Top][All Lists]
Advanced

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

07/25: gnu: Add rust-polars-arrow-0.14.


From: guix-commits
Subject: 07/25: gnu: Add rust-polars-arrow-0.14.
Date: Tue, 27 Jul 2021 10:41:43 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit 08dfad9918e504c94a485a542fb164b4d9ea8042
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Wed Jun 23 09:48:17 2021 +0200

    gnu: Add rust-polars-arrow-0.14.
    
    * gnu/packages/crates-io.scm (rust-polars-arrow-0.14): New variable.
    (rust-polars-arrow-0.13): Inherit from above.
---
 gnu/packages/crates-io.scm | 29 ++++++++++++++++++++++++-----
 1 file changed, 24 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 0d8c95c..cdfe898 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -32839,18 +32839,17 @@ applications.")
      "Polars is a dataframe Library based on Apache Arrow.")
     (license license:expat)))
 
-(define-public rust-polars-arrow-0.13
+(define-public rust-polars-arrow-0.14
   (package
     (name "rust-polars-arrow")
-    (version "0.13.4")
+    (version "0.14.8")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "polars-arrow" version))
-       (file-name
-        (string-append name "-" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "0r6k2zm9f3nngjszdjnjz7r7c91qpq88lwjfgsbwfi8383xxbcjk"))))
+        (base32 "1wk6qfj821w6qqs35n9f0zhp9n7mffxzah12nqk1xlpv2ci2ahsr"))))
     (build-system cargo-build-system)
     (arguments
      `(#:skip-build? #t
@@ -32864,6 +32863,26 @@ applications.")
      "This crate provides Arrow interfaces for Polars DataFrame library.")
     (license license:expat)))
 
+(define-public rust-polars-arrow-0.13
+  (package
+    (inherit rust-polars-arrow-0.14)
+    (name "rust-polars-arrow")
+    (version "0.13.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "polars-arrow" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0r6k2zm9f3nngjszdjnjz7r7c91qpq88lwjfgsbwfi8383xxbcjk"))))
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs
+       (("rust-arrow" ,rust-arrow-4)
+        ("rust-num" ,rust-num-0.4)
+        ("rust-thiserror" ,rust-thiserror-1))))))
+
 (define-public rust-polars-core-0.14
   (package
     (name "rust-polars-core")



reply via email to

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