haskell-hspec-attoparsec: new package, version 0.1.0.1

This commit is contained in:
Sönke Hahn 2014-07-08 13:47:01 +08:00
parent 682aadfc91
commit c7159f0706
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{ cabal, attoparsec, hspec, hspecExpectations, text }:
cabal.mkDerivation (self: {
pname = "hspec-attoparsec";
version = "0.1.0.1";
sha256 = "12246p4k0axv6w5jxnid9hyl4cbl3vmd46b7xxli7nq2iw79nl8v";
buildDepends = [ attoparsec hspecExpectations text ];
testDepends = [ attoparsec hspec hspecExpectations text ];
meta = {
homepage = "http://github.com/alpmestan/hspec-attoparsec";
description = "Utility functions for testing your attoparsec parsers with hspec";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -1187,6 +1187,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
hspec = callPackage ../development/libraries/haskell/hspec {};
hspecAttoparsec = callPackage ../development/libraries/haskell/hspec-attoparsec {};
hspecWai = callPackage ../development/libraries/haskell/hspec-wai {};
hspec2 = callPackage ../development/libraries/haskell/hspec2 {};