cabal2nix-2.16.0: test/golden-test-cases/tasty-hedgehog.nix.golden
{ mkDerivation, base, hedgehog, lib, tagged, tasty
, tasty-expected-failure
}:
mkDerivation {
pname = "tasty-hedgehog";
version = "0.1.0.1";
sha256 = "deadbeef";
libraryHaskellDepends = [ base hedgehog tagged tasty ];
testHaskellDepends = [
base hedgehog tasty tasty-expected-failure
];
homepage = "https://github.com/qfpl/tasty-hedghog";
description = "Integrates the hedgehog testing library with the tasty testing framework";
license = lib.licenses.bsd3;
}