mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 12:47:33 -05:00
gnu: Add rust-polars-io-0.13.
* gnu/packages/crates-io.scm (rust-polars-io-0.13): New variable.
This commit is contained in:
parent
a5ec61d535
commit
0162b1ddab
1 changed files with 37 additions and 0 deletions
|
@ -32199,6 +32199,43 @@ (define-public rust-polars-core-0.13
|
||||||
"This crate provides the core of the Polars DataFrame library.")
|
"This crate provides the core of the Polars DataFrame library.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-polars-io-0.13
|
||||||
|
(package
|
||||||
|
(name "rust-polars-io")
|
||||||
|
(version "0.13.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "polars-io" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1iwbr5i1qy5f54ifhvxr8h9jr023jfj0mai5hy1lccszxh88hf17"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-ahash" ,rust-ahash-0.7)
|
||||||
|
("rust-anyhow" ,rust-anyhow-1)
|
||||||
|
("rust-arrow" ,rust-arrow-4)
|
||||||
|
("rust-csv" ,rust-csv-1)
|
||||||
|
("rust-csv-core" ,rust-csv-core-0.1)
|
||||||
|
("rust-fast-float" ,rust-fast-float-0.2)
|
||||||
|
("rust-lazy-static" ,rust-lazy-static-1)
|
||||||
|
("rust-lexical" ,rust-lexical-5)
|
||||||
|
("rust-memmap2" ,rust-memmap2-0.2)
|
||||||
|
("rust-num" ,rust-num-0.4)
|
||||||
|
("rust-num-cpus" ,rust-num-cpus-1)
|
||||||
|
("rust-parquet" ,rust-parquet-4)
|
||||||
|
("rust-polars-arrow" ,rust-polars-arrow-0.13)
|
||||||
|
("rust-polars-core" ,rust-polars-core-0.13)
|
||||||
|
("rust-rayon" ,rust-rayon-1)
|
||||||
|
("rust-regex" ,rust-regex-1))))
|
||||||
|
(home-page "https://github.com/ritchie46/polars")
|
||||||
|
(synopsis "IO related logic for the Polars DataFrame library")
|
||||||
|
(description
|
||||||
|
"This crate provides IO related logic for the Polars DataFrame library.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-polling-2
|
(define-public rust-polling-2
|
||||||
(package
|
(package
|
||||||
(name "rust-polling")
|
(name "rust-polling")
|
||||||
|
|
Loading…
Reference in a new issue