From 1bdd29579991464d04dd831c8cedd76d342c8595 Mon Sep 17 00:00:00 2001 From: Herman Rimm Date: Tue, 24 Dec 2024 21:11:17 +0100 Subject: [PATCH] gnu: rust-pyo3-0.22: Order alphabetically. * gnu/packages/crates-io.scm (rust-pyo3-0.22): Order. Change-Id: Id6fce794e1b78801afd2e30339299b332f00d81c Signed-off-by: Efraim Flashner --- gnu/packages/crates-io.scm | 100 ++++++++++++++++++------------------- 1 file changed, 50 insertions(+), 50 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index aefc21b41c..79b94bed9c 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -63758,6 +63758,56 @@ (define-public rust-pyo3-0.23 Python code from a Rust binary is also supported.") (license (list license:expat license:asl2.0)))) +(define-public rust-pyo3-0.22 + (package + (inherit rust-pyo3-0.23) + (name "rust-pyo3") + (version "0.22.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "pyo3" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "110qrq9yibfv40zzind9p2i87617lhzs379ix0m2065b2qk0c0pl")))) + (arguments + `(#:cargo-inputs (("rust-anyhow" ,rust-anyhow-1) + ("rust-cfg-if" ,rust-cfg-if-1) + ("rust-chrono" ,rust-chrono-0.4) + ("rust-chrono-tz" ,rust-chrono-tz-0.6) + ("rust-either" ,rust-either-1) + ("rust-eyre" ,rust-eyre-0.6) + ("rust-hashbrown" ,rust-hashbrown-0.9) + ("rust-indexmap" ,rust-indexmap-1) + ("rust-indoc" ,rust-indoc-2) + ("rust-inventory" ,rust-inventory-0.3) + ("rust-libc" ,rust-libc-0.2) + ("rust-memoffset" ,rust-memoffset-0.9) + ("rust-num-bigint" ,rust-num-bigint-0.4) + ("rust-num-complex" ,rust-num-complex-0.2) + ("rust-num-rational" ,rust-num-rational-0.4) + ("rust-once-cell" ,rust-once-cell-1) + ("rust-portable-atomic" ,rust-portable-atomic-1) + ("rust-pyo3-build-config" ,rust-pyo3-build-config-0.22) + ("rust-pyo3-ffi" ,rust-pyo3-ffi-0.22) + ("rust-pyo3-macros" ,rust-pyo3-macros-0.22) + ("rust-rust-decimal" ,rust-rust-decimal-1) + ("rust-serde" ,rust-serde-1) + ("rust-smallvec" ,rust-smallvec-1) + ("rust-unindent" ,rust-unindent-0.2)) + #:cargo-development-inputs + (("rust-assert-approx-eq" ,rust-assert-approx-eq-1) + ("rust-chrono" ,rust-chrono-0.4) + ("rust-chrono-tz" ,rust-chrono-tz-0.6) + ("rust-futures" ,rust-futures-0.3) + ("rust-proptest" ,rust-proptest-1) + ("rust-rayon" ,rust-rayon-1) + ("rust-send-wrapper" ,rust-send-wrapper-0.6) + ("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-static-assertions" ,rust-static-assertions-1) + ("rust-trybuild" ,rust-trybuild-1)))))) + (define-public rust-pyo3-build-config-0.23 (package (name "rust-pyo3-build-config") @@ -64396,56 +64446,6 @@ (define-public rust-pyo3-macros-0.15 ("rust-syn" ,rust-syn-1)))) (native-inputs (list python)))) -(define-public rust-pyo3-0.22 - (package - (inherit rust-pyo3-0.23) - (name "rust-pyo3") - (version "0.22.6") - (source - (origin - (method url-fetch) - (uri (crate-uri "pyo3" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 "110qrq9yibfv40zzind9p2i87617lhzs379ix0m2065b2qk0c0pl")))) - (arguments - `(#:cargo-inputs (("rust-anyhow" ,rust-anyhow-1) - ("rust-cfg-if" ,rust-cfg-if-1) - ("rust-chrono" ,rust-chrono-0.4) - ("rust-chrono-tz" ,rust-chrono-tz-0.6) - ("rust-either" ,rust-either-1) - ("rust-eyre" ,rust-eyre-0.6) - ("rust-hashbrown" ,rust-hashbrown-0.9) - ("rust-indexmap" ,rust-indexmap-1) - ("rust-indoc" ,rust-indoc-2) - ("rust-inventory" ,rust-inventory-0.3) - ("rust-libc" ,rust-libc-0.2) - ("rust-memoffset" ,rust-memoffset-0.9) - ("rust-num-bigint" ,rust-num-bigint-0.4) - ("rust-num-complex" ,rust-num-complex-0.2) - ("rust-num-rational" ,rust-num-rational-0.4) - ("rust-once-cell" ,rust-once-cell-1) - ("rust-portable-atomic" ,rust-portable-atomic-1) - ("rust-pyo3-build-config" ,rust-pyo3-build-config-0.22) - ("rust-pyo3-ffi" ,rust-pyo3-ffi-0.22) - ("rust-pyo3-macros" ,rust-pyo3-macros-0.22) - ("rust-rust-decimal" ,rust-rust-decimal-1) - ("rust-serde" ,rust-serde-1) - ("rust-smallvec" ,rust-smallvec-1) - ("rust-unindent" ,rust-unindent-0.2)) - #:cargo-development-inputs - (("rust-assert-approx-eq" ,rust-assert-approx-eq-1) - ("rust-chrono" ,rust-chrono-0.4) - ("rust-chrono-tz" ,rust-chrono-tz-0.6) - ("rust-futures" ,rust-futures-0.3) - ("rust-proptest" ,rust-proptest-1) - ("rust-rayon" ,rust-rayon-1) - ("rust-send-wrapper" ,rust-send-wrapper-0.6) - ("rust-serde" ,rust-serde-1) - ("rust-serde-json" ,rust-serde-json-1) - ("rust-static-assertions" ,rust-static-assertions-1) - ("rust-trybuild" ,rust-trybuild-1)))))) - (define-public rust-pyo3-0.21 (package (inherit rust-pyo3-0.22)