gnu: Add rust-polars-lazy-0.13.

* gnu/packages/crates-io.scm (rust-polars-lazy-0.13): New variable.
This commit is contained in:
Nicolas Goaziou 2021-06-15 22:31:47 +02:00
parent 0162b1ddab
commit 63344d1eb0
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -32236,6 +32236,34 @@ (define-public rust-polars-io-0.13
"This crate provides IO related logic for the Polars DataFrame library.")
(license license:expat)))
(define-public rust-polars-lazy-0.13
(package
(name "rust-polars-lazy")
(version "0.13.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "polars-lazy" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0z5dqz9fk23i10flq4lw8a3qb6638kwxcmka1dyxpabh94l86zqf"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-ahash" ,rust-ahash-0.7)
("rust-itertools" ,rust-itertools-0.10)
("rust-polars-arrow" ,rust-polars-arrow-0.13)
("rust-polars-core" ,rust-polars-core-0.13)
("rust-polars-io" ,rust-polars-io-0.13)
("rust-rayon" ,rust-rayon-1))))
(home-page "https://github.com/ritchie46/polars")
(synopsis "Lazy query engine for the Polars DataFrame library")
(description
"This crate provides a lazy query engine for the Polars DataFrame
library.")
(license license:expat)))
(define-public rust-polling-2
(package
(name "rust-polling")