mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 12:47:33 -05:00
gnu: Add rust-polars-arrow-0.13.
* gnu/packages/crates-io.scm (rust-polars-arrow-0.13): New variable.
This commit is contained in:
parent
ae31d80d00
commit
a33f036064
1 changed files with 25 additions and 0 deletions
|
@ -32132,6 +32132,31 @@ (define-public rust-podio-0.1
|
|||
"Additional trait for Read and Write to read and write Plain Old Data.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-polars-arrow-0.13
|
||||
(package
|
||||
(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"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-arrow" ,rust-arrow-4)
|
||||
("rust-num" ,rust-num-0.4)
|
||||
("rust-thiserror" ,rust-thiserror-1))))
|
||||
(home-page "https://github.com/ritchie46/polars")
|
||||
(synopsis "Arrow interfaces for Polars DataFrame library")
|
||||
(description
|
||||
"This crate provides Arrow interfaces for Polars DataFrame library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-polling-2
|
||||
(package
|
||||
(name "rust-polling")
|
||||
|
|
Loading…
Reference in a new issue