me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-polars-0.13.

* gnu/packages/crates-io.scm (rust-polars-0.13): New variable.
master
Nicolas Goaziou 2021-06-15 22:32:42 +02:00
parent 63344d1eb0
commit 38761e0789
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 26 additions and 0 deletions

View File

@ -32132,6 +32132,32 @@ applications.")
"Additional trait for Read and Write to read and write Plain Old Data.") "Additional trait for Read and Write to read and write Plain Old Data.")
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define-public rust-polars-0.13
(package
(name "rust-polars")
(version "0.13.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "polars" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"104s1r0ndwz3blklbfshkm0km0602w9rqg9lbaq36zbbf93cw1n4"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-polars-core" ,rust-polars-core-0.13)
("rust-polars-io" ,rust-polars-io-0.13)
("rust-polars-lazy" ,rust-polars-lazy-0.13))))
(home-page "https://github.com/ritchie46/polars")
(synopsis "DataFrame Library based on Apache Arrow")
(description
"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.13
(package (package
(name "rust-polars-arrow") (name "rust-polars-arrow")