2013-04-01 17:18:47 +02:00
|
|
|
{ cabal, ansiTerminal, deepseq, doctest, filepath, ghcPaths
|
2013-04-01 10:00:40 +02:00
|
|
|
, hspecExpectations, hspecMeta, HUnit, QuickCheck, quickcheckIo
|
2013-04-01 17:18:47 +02:00
|
|
|
, random, setenv, silently, time, transformers
|
haskell-hspec: New package, v1.3.0.
Well, we now have a direct dependency of yesod-test, things are coming close,
almost TOO close. But we still have a long journey ahead.
.---- yesod-test -------.
| | |
| | |
: wai-test html-conduit -.
: | |
: | filesystem-conduit
: |
. |
. tagstream-conduit
.
,-.,-.,-.-,-.-,.-,-.,-.,-.
( down with the s^Hhspec! )
,--. ,'`-'-`-'`-'-`-'--'-`-'-`-'
|o o|
`-'\.
[|]-' \.-`
.'. `\
| | '`
| |
| |
\|
hspec
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2012-09-12 05:16:01 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hspec";
|
2013-09-11 20:02:46 +02:00
|
|
|
version = "1.7.2.1";
|
|
|
|
sha256 = "12khyg6ixk2rkbvxjbi210w57cais1s142v337kpcp3dfk6440bk";
|
haskell-hspec: New package, v1.3.0.
Well, we now have a direct dependency of yesod-test, things are coming close,
almost TOO close. But we still have a long journey ahead.
.---- yesod-test -------.
| | |
| | |
: wai-test html-conduit -.
: | |
: | filesystem-conduit
: |
. |
. tagstream-conduit
.
,-.,-.,-.-,-.-,.-,-.,-.,-.
( down with the s^Hhspec! )
,--. ,'`-'-`-'`-'-`-'--'-`-'-`-'
|o o|
`-'\.
[|]-' \.-`
.'. `\
| | '`
| |
| |
\|
hspec
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2012-09-12 05:16:01 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-04-01 17:18:47 +02:00
|
|
|
ansiTerminal deepseq filepath hspecExpectations HUnit QuickCheck
|
|
|
|
quickcheckIo random setenv time transformers
|
haskell-hspec: New package, v1.3.0.
Well, we now have a direct dependency of yesod-test, things are coming close,
almost TOO close. But we still have a long journey ahead.
.---- yesod-test -------.
| | |
| | |
: wai-test html-conduit -.
: | |
: | filesystem-conduit
: |
. |
. tagstream-conduit
.
,-.,-.,-.-,-.-,.-,-.,-.,-.
( down with the s^Hhspec! )
,--. ,'`-'-`-'`-'-`-'--'-`-'-`-'
|o o|
`-'\.
[|]-' \.-`
.'. `\
| | '`
| |
| |
\|
hspec
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2012-09-12 05:16:01 +02:00
|
|
|
];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
2013-04-01 17:18:47 +02:00
|
|
|
ansiTerminal deepseq doctest filepath ghcPaths hspecExpectations
|
|
|
|
hspecMeta HUnit QuickCheck quickcheckIo random setenv silently time
|
|
|
|
transformers
|
2013-02-24 22:09:07 +01:00
|
|
|
];
|
2013-04-06 11:13:19 +02:00
|
|
|
doCheck = false;
|
haskell-hspec: New package, v1.3.0.
Well, we now have a direct dependency of yesod-test, things are coming close,
almost TOO close. But we still have a long journey ahead.
.---- yesod-test -------.
| | |
| | |
: wai-test html-conduit -.
: | |
: | filesystem-conduit
: |
. |
. tagstream-conduit
.
,-.,-.,-.-,-.-,.-,-.,-.,-.
( down with the s^Hhspec! )
,--. ,'`-'-`-'`-'-`-'--'-`-'-`-'
|o o|
`-'\.
[|]-' \.-`
.'. `\
| | '`
| |
| |
\|
hspec
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2012-09-12 05:16:01 +02:00
|
|
|
meta = {
|
2013-07-01 11:04:04 +02:00
|
|
|
homepage = "http://hspec.github.io/";
|
2012-11-16 15:59:15 +01:00
|
|
|
description = "Behavior-Driven Development for Haskell";
|
2013-07-01 11:04:04 +02:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
haskell-hspec: New package, v1.3.0.
Well, we now have a direct dependency of yesod-test, things are coming close,
almost TOO close. But we still have a long journey ahead.
.---- yesod-test -------.
| | |
| | |
: wai-test html-conduit -.
: | |
: | filesystem-conduit
: |
. |
. tagstream-conduit
.
,-.,-.,-.-,-.-,.-,-.,-.,-.
( down with the s^Hhspec! )
,--. ,'`-'-`-'`-'-`-'--'-`-'-`-'
|o o|
`-'\.
[|]-' \.-`
.'. `\
| | '`
| |
| |
\|
hspec
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2012-09-12 05:16:01 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|