From 6b43da6e934bc4809db776831d11d036e176cf35 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Wed, 3 Aug 2022 11:23:22 +0200 Subject: [PATCH v4 16/38] 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 e6765d870a..b1abacf533 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -38392,6 +38392,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.3 (package (name "rust-ntest-test-cases") -- 2.36.1