mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-01 23:05:57 +02:00
gnu: Add rust-pyo3-0.22.
* gnu/packages/crates-io.scm (rust-pyo3-0.22): New variable. (rust-pyo3-0.21): Inherit from rust-pyo3-0.22. Change-Id: I59647e404b4244f33c28cad803eac2358218553a
This commit is contained in:
+60
-10
@@ -63040,8 +63040,67 @@ extension to python.")
|
||||
("rust-syn" ,rust-syn-1))))
|
||||
(native-inputs (list python))))
|
||||
|
||||
(define-public rust-pyo3-0.22
|
||||
(package
|
||||
(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"))))
|
||||
(build-system cargo-build-system)
|
||||
(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))))
|
||||
(inputs (list python-minimal))
|
||||
(home-page "https://github.com/pyo3/pyo3")
|
||||
(synopsis "Rust bindings for the Python interpreter")
|
||||
(description
|
||||
"This package provides Rust bindings for Python, including tools for
|
||||
creating native Python extension modules. Running and interacting with
|
||||
Python code from a Rust binary is also supported.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-pyo3-0.21
|
||||
(package
|
||||
(inherit rust-pyo3-0.22)
|
||||
(name "rust-pyo3")
|
||||
(version "0.21.2")
|
||||
(source
|
||||
@@ -63051,7 +63110,6 @@ extension to python.")
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1n39y183jfqbyvimscqr0ysxxa6804pn46ivw048ww91lnb0pq55"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-anyhow" ,rust-anyhow-1)
|
||||
("rust-cfg-if" ,rust-cfg-if-1)
|
||||
@@ -63085,15 +63143,7 @@ extension to python.")
|
||||
("rust-send-wrapper" ,rust-send-wrapper-0.6)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-serde-json" ,rust-serde-json-1)
|
||||
("rust-trybuild" ,rust-trybuild-1))))
|
||||
(inputs (list python))
|
||||
(home-page "https://github.com/pyo3/pyo3")
|
||||
(synopsis "Rust bindings for the Python interpreter")
|
||||
(description
|
||||
"This package provides Rust bindings for Python, including tools for
|
||||
creating native Python extension modules. Running and interacting with
|
||||
Python code from a Rust binary is also supported.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
("rust-trybuild" ,rust-trybuild-1))))))
|
||||
|
||||
(define-public rust-pyo3-0.20
|
||||
(package
|
||||
|
||||
Reference in New Issue
Block a user