gnu: Add rust-proptest-derive-0.1.

* gnu/packages/crates-io.scm (rust-proptest-derive-0.1): New variable.
This commit is contained in:
Arun Isaac 2020-09-19 21:17:06 +05:30
parent 1487b6e2bb
commit 395300c529
No known key found for this signature in database
GPG key ID: 2E25EE8B61802BB3

View file

@ -18807,6 +18807,35 @@ (define-public rust-proptest-0.3
#:cargo-development-inputs
(("rust-regex" ,rust-regex-0.2))))))
(define-public rust-proptest-derive-0.1
(package
(name "rust-proptest-derive")
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "proptest-derive" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0nziczbm7w0jisjrd216hh2j45fs5m363ga7r6nawwxcxlbxn7nk"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-proc-macro2" ,rust-proc-macro2-0.4)
("rust-quote" ,rust-quote-0.6)
("rust-syn" ,rust-syn-0.15))
#:cargo-development-inputs
(("rust-compiletest-rs" ,rust-compiletest-rs-0.3)
("rust-criterion" ,rust-criterion-0.2)
("rust-proptest" ,rust-proptest-0.9))))
(home-page
"https://altsysrq.github.io/proptest-book/proptest-derive/index.html")
(synopsis "Custom-derive for the Arbitrary trait of proptest")
(description "This package provides a Custom-derive for the Arbitrary
trait of proptest.")
(license (list license:expat license:asl2.0))))
(define-public rust-psm-0.1
(package
(name "rust-psm")