me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-rstest-0.13.

* gnu/packages/crates-io.scm (rust-rstest-0.13): New variable.

Change-Id: If3aaad4342441c752617f2fa739f53e3e0abfc54
Efraim Flashner 2023-10-25 09:56:11 +03:00
parent c5723dbb46
commit 11ba039b2e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 21 additions and 0 deletions

View File

@ -61493,6 +61493,27 @@ contains the API endpoint response objects.")
and table-based tests.")
(license (list license:expat license:asl2.0))))
(define-public rust-rstest-0.13
(package
(inherit rust-rstest-0.15)
(name "rust-rstest")
(version "0.13.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "rstest" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1p04kbsvk2xna7fk5657p0zi76qrcglrxkw33ay147fbjdgjjfdr"))))
(arguments
`(#:skip-build? #t ; Cut the dependency graph.
#:cargo-inputs
(("rust-async-std" ,rust-async-std-1)
("rust-futures" ,rust-futures-0.3)
("rust-futures-timer" ,rust-futures-timer-3)
("rust-rstest-macros" ,rust-rstest-macros-0.13)
("rust-rustc-version" ,rust-rustc-version-0.4))))))
(define-public rust-rstest-0.12
(package
(inherit rust-rstest-0.15)