summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/doctest-prop/default.nix
blob: bca82f78bcf49cc0d4b128855b2cdfc5328311eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, doctest, HUnit, QuickCheck }:

cabal.mkDerivation (self: {
  pname = "doctest-prop";
  version = "0.2";
  sha256 = "09wxkhcmh297hqnx3g4x8ff0w5dcmls9y383417rc8wawf5q288n";
  buildDepends = [ HUnit QuickCheck ];
  testDepends = [ doctest HUnit QuickCheck ];
  meta = {
    description = "Allow QuickCheck-style property testing within doctest";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})