me
/
guix
Archived
1
0
Fork 0

gnu: rust-eyre-0.6: Update to 0.6.8.

* gnu/packages/crates-io.scm (rust-eyre-0.6): Update to 0.6.8.
[arguments]: Remove #:skip-build? argument.  Add rust-pyo3-0.13 to
 #:cargo-inputs.  Add #:cargo-development-inputs.
[native-inputs]: Add python.
master
Maxim Cournoyer 2023-04-03 19:46:00 -04:00
parent 818f90df5c
commit 5d032a287d
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 20 additions and 12 deletions

View File

@ -20470,20 +20470,28 @@ traits but without the boilerplate.")
(define-public rust-eyre-0.6
(package
(name "rust-eyre")
(version "0.6.6")
(source
(origin
(method url-fetch)
(uri (crate-uri "eyre" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1f0fbmrcykp84av1yb1d4cqj28jwf0zg1z49a1cgw8vrcf7ms8mw"))))
(version "0.6.8")
(source (origin
(method url-fetch)
(uri (crate-uri "eyre" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1sy7x8p74jfx1mvj4ifl0lxkxaqvmswdgdr84y1dqb6055d6nasc"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-indenter" ,rust-indenter-0.3)
("rust-once-cell" ,rust-once-cell-1))))
`(#:cargo-inputs (("rust-indenter" ,rust-indenter-0.3)
("rust-once-cell" ,rust-once-cell-1)
("rust-pyo3" ,rust-pyo3-0.13))
#:cargo-development-inputs (("rust-anyhow" ,rust-anyhow-1)
("rust-backtrace" ,rust-backtrace-0.3)
("rust-futures" ,rust-futures-0.3)
("rust-pyo3" ,rust-pyo3-0.13)
("rust-rustversion" ,rust-rustversion-1)
("rust-syn" ,rust-syn-1)
("rust-thiserror" ,rust-thiserror-1)
("rust-trybuild" ,rust-trybuild-1))))
(native-inputs (list python))
(home-page "https://github.com/yaahc/eyre")
(synopsis "Trait object based error handling type")
(description