diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-03-08 13:51:30 +0100 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-05-05 13:20:20 +0200 |
commit | 5b034ab6a65a7f7b7a4758ee9c3593fce246ebae (patch) | |
tree | 3131a0391230495804ad98f66559a9f75def1d8d | |
parent | 1a4765d82fed36e7c136def46650a10114e62f69 (diff) | |
download | guix-5b034ab6a65a7f7b7a4758ee9c3593fce246ebae.tar.gz guix-5b034ab6a65a7f7b7a4758ee9c3593fce246ebae.zip |
gnu: Add rust-expectest-0.9.
* gnu/packages/crates-io.scm (rust-expectest-0.9): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 7f368af299..cef9ddc765 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -6324,6 +6324,27 @@ variables.") (description "XML parser library written in C") (license license:expat))) +(define-public rust-expectest-0.9 + (package + (name "rust-expectest") + (version "0.9.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "expectest" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0f24q2a53x7sfmmrqjbwbk7pahzwkpd829fcr023kb7q5xnd6z4g")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-num-traits" ,rust-num-traits-0.1)))) + (home-page "https://github.com/zummenix/expectest") + (synopsis "Matchers and matcher functions for unit testing") + (description "This crate provides matchers and matcher functions for unit +testing.") + (license (list license:expat license:asl2.0)))) + (define-public rust-fake-simd-0.1 (package (name "rust-fake-simd") |