Skip to content
Snippets Groups Projects
Commit 37d0104f authored by Daniel Firth's avatar Daniel Firth
Browse files

hspec-wai: init at 0.11.1

parent d8e11a1d
No related merge requests found
......@@ -398,6 +398,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "hspec-expectations" "0.8.2"
, callHackage "hspec-megaparsec" "2.2.0"
, callHackage "hspec-meta" "2.9.3"
, callHackage "hspec-wai" "0.11.1"
, callHackage "hspec" "2.10.3"
, callHackage "httpd-shed" "0.4.1.1"
, callHackage "http-api-data" "0.5"
......
......@@ -587,6 +587,8 @@ self: with pkgs.haskell.lib; {
hspec-meta = self.callPackage (./pkgs/hspec-meta.nix) { };
hspec-wai = self.callPackage (./pkgs/hspec-wai.nix) { };
http-api-data = self.callPackage (./pkgs/http-api-data.nix) { };
http-client = self.callPackage (./pkgs/http-client.nix) { };
......
{ mkDerivation
, base
, base-compat
, bytestring
, case-insensitive
, hspec
, hspec-core
, hspec-expectations
, http-types
, lib
, QuickCheck
, text
, transformers
, wai
, wai-extra
}:
mkDerivation {
pname = "hspec-wai";
version = "0.11.1";
sha256 = "32a86bf44ff70345718102f013f6dded35a96ceeda1aa4cc132af9c2a29e910f";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
base-compat
bytestring
case-insensitive
hspec-core
hspec-expectations
http-types
QuickCheck
text
transformers
wai
wai-extra
];
testHaskellDepends = [
base
base-compat
bytestring
case-insensitive
hspec
hspec-core
hspec-expectations
http-types
QuickCheck
text
transformers
wai
wai-extra
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/hspec/hspec-wai#readme";
description = "Experimental Hspec support for testing WAI applications";
license = lib.licenses.mit;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment