Unverified Commit f2c975bc authored by Vincent Laporte's avatar Vincent Laporte
Browse files

ocamlPackages.ppx_quick_test: 0.17.0 → 0.17.1

parent 1e1c1048
Loading
Loading
Loading
Loading
+32 −20
Original line number Diff line number Diff line
@@ -1606,9 +1606,9 @@ with self;
    doCheck = false; # test rules broken
  };

  ppx_quick_test = janePackage {
  ppx_quick_test = janePackage (
    {
      pname = "ppx_quick_test";
    hash = "sha256-Kxb0IJcosC4eYlUjEfZE9FhY8o1/gDHHLWD5Cby5hXY=";
      meta.description = "Spiritual equivalent of let%expect_test, but for property based tests";
      propagatedBuildInputs = [
        async
@@ -1624,8 +1624,20 @@ with self;
        ppx_sexp_conv
        ppx_sexp_message
      ];
    meta.broken = lib.versionAtLeast ppxlib.version "0.36";
  };
    }
    // (
      if lib.versionAtLeast ppxlib.version "0.36" then
        {
          version = "0.17.1";
          hash = "sha256-nSgi0MAmOWhk53x6U5Wmv/5zTxBiErWQqoT6ATBOv3w=";
        }
      else
        {
          version = "0.17.0";
          hash = "sha256-Kxb0IJcosC4eYlUjEfZE9FhY8o1/gDHHLWD5Cby5hXY=";
        }
    )
  );

  ppx_sexp_conv = janePackage (
    {