2024-07-01 15:47:52 +00:00
|
|
|
{ lib, buildDunePackage, qcheck-core, reason, console, rely, src }:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
inherit src;
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
pname = "qcheck-rely";
|
2024-07-01 15:47:52 +00:00
|
|
|
version = "1.0.2-unstable-2024-05-07";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
nativeBuildInputs = [
|
2021-06-28 23:13:55 +00:00
|
|
|
reason
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
qcheck-core
|
|
|
|
console
|
|
|
|
rely
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Library containing custom Rely matchers allowing for easily using QCheck with Rely. QCheck is a 'QuickCheck inspired property-based testing for OCaml, and combinators to generate random values to run tests on'";
|
2021-06-28 23:13:55 +00:00
|
|
|
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/qcheck-rely";
|
2024-07-01 15:47:52 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ ];
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
}
|