me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-arrow-data-47.

* gnu/packages/crates-io.scm (rust-arrow-data-47): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Troy Figiel 2024-01-27 16:05:27 +01:00 committed by Efraim Flashner
parent 05fc627200
commit 9e886566a0
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 24 additions and 0 deletions

View File

@ -2567,6 +2567,30 @@ format.")
Rust implementation of Apache Arrow.")
(license license:asl2.0)))
(define-public rust-arrow-data-47
(package
(name "rust-arrow-data")
(version "47.0.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "arrow-data" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0fpp09ykg6nb7jcaqnjzga242y7nlrfz3v0wlrf0kd68k4v4qnj7"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-arrow-buffer" ,rust-arrow-buffer-47)
("rust-arrow-schema" ,rust-arrow-schema-47)
("rust-half" ,rust-half-2)
("rust-num" ,rust-num-0.4))))
(home-page "https://github.com/apache/arrow-rs")
(synopsis "Low-level array data abstractions for Apache Arrow")
(description "This crate contains low-level array data abstractions for
the Apache Arrow implementation in Rust.")
(license license:asl2.0)))
(define-public rust-arrow-format-0.3
(package
(name "rust-arrow-format")