From e1859e4d7b428a1e1ccbb5627f498c85664d968d Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Wed, 3 Aug 2022 11:23:22 +0200 Subject: [PATCH v4 18/37] gnu: Add rust-ntest-proc-macro-helper-0.7. * gnu/packages/crates-io.scm (rust-ntest-proc-macro-helper-0.7): New variable. diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 780566216b..d072161ad9 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -38362,6 +38362,27 @@ (define-public rust-ntest-0.3 enhances the built-in library with some useful features.") (license license:expat))) +(define-public rust-ntest-proc-macro-helper-0.7 + (package + (name "rust-ntest-proc-macro-helper") + (version "0.7.5") + (source (origin + (method url-fetch) + (uri (crate-uri "ntest_proc_macro_helper" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0lkyfx97aynbm7cnhzyc9cr0rpq1xzng1hwmzizbf1a6855y6llg")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t)) + (home-page "https://github.com/becheran/ntest") + (synopsis + "Provide helper functions for the procedural macros used in ntest.") + (description + "Provide helper functions for the procedural macros used in ntest.") + (license license:expat))) + (define-public rust-ntest-test-cases-0.7 (package (name "rust-ntest-test-cases") -- 2.37.0