mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-22 10:39:39 -05:00
gnu: Add rust-polars-io-0.16.
* gnu/packages/crates-io.scm (rust-polars-io-0.16): New variable. (rust-polars-io-0.15): Inherit from above.
This commit is contained in:
parent
4bbb2248c4
commit
0c5a066d5c
1 changed files with 39 additions and 7 deletions
|
@ -35998,8 +35998,46 @@ (define-public rust-polars-core-0.13
|
|||
("rust-thiserror" ,rust-thiserror-1)
|
||||
("rust-unsafe-unwrap" ,rust-unsafe-unwrap-0.1))))))
|
||||
|
||||
(define-public rust-polars-io-0.16
|
||||
(package
|
||||
(name "rust-polars-io")
|
||||
(version "0.16.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "polars-io" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0yqpjk0ymqpjq6f0mnm9hhw9xmjradx6vqzg5n54qvl6v3s3p3kh"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-ahash" ,rust-ahash-0.7)
|
||||
("rust-anyhow" ,rust-anyhow-1)
|
||||
("rust-arrow2" ,rust-arrow2-0.5)
|
||||
("rust-csv-core" ,rust-csv-core-0.1)
|
||||
("rust-dirs" ,rust-dirs-3)
|
||||
("rust-flate2" ,rust-flate2-1)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-lexical" ,rust-lexical-6)
|
||||
("rust-memmap2" ,rust-memmap2-0.2)
|
||||
("rust-num" ,rust-num-0.4)
|
||||
("rust-num-cpus" ,rust-num-cpus-1)
|
||||
("rust-polars-arrow" ,rust-polars-arrow-0.16)
|
||||
("rust-polars-core" ,rust-polars-core-0.16)
|
||||
("rust-rayon" ,rust-rayon-1)
|
||||
("rust-regex" ,rust-regex-1)
|
||||
("rust-simdutf8" ,rust-simdutf8-0.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-polars-io-0.15
|
||||
(package
|
||||
(inherit rust-polars-io-0.16)
|
||||
(name "rust-polars-io")
|
||||
(version "0.15.1")
|
||||
(source
|
||||
|
@ -36009,7 +36047,6 @@ (define-public rust-polars-io-0.15
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "19r2l3rxjdk25ir93l85ap4q0w5p7apjw3g57pszxph9nh2j8ba2"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
|
@ -36030,12 +36067,7 @@ (define-public rust-polars-io-0.15
|
|||
("rust-polars-core" ,rust-polars-core-0.15)
|
||||
("rust-rayon" ,rust-rayon-1)
|
||||
("rust-regex" ,rust-regex-1)
|
||||
("rust-simdutf8" ,rust-simdutf8-0.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)))
|
||||
("rust-simdutf8" ,rust-simdutf8-0.1))))))
|
||||
|
||||
(define-public rust-polars-io-0.14
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue