diff --git a/pkgs/development/libraries/haskell/streaming-commons/default.nix b/pkgs/development/libraries/haskell/streaming-commons/default.nix
index fec0ddf79cd3..4bcb46887bc8 100644
--- a/pkgs/development/libraries/haskell/streaming-commons/default.nix
+++ b/pkgs/development/libraries/haskell/streaming-commons/default.nix
@@ -1,13 +1,13 @@
-{ cabal, deepseq, hspec, network, QuickCheck, text, transformers
-, zlib
+{ cabal, async, deepseq, hspec, network, QuickCheck, text
+, transformers, zlib
 }:
 
 cabal.mkDerivation (self: {
   pname = "streaming-commons";
-  version = "0.1.0.2";
-  sha256 = "1idlhvlv5pg20xq8h4rmphyflvpc9q88krwm498mh3s4983ik28c";
+  version = "0.1.1";
+  sha256 = "1mzpdhdc5kq9pfpsjs6v1j1qa1pdj1ca4s32z4bjq751jayj6ds6";
   buildDepends = [ network text transformers zlib ];
-  testDepends = [ deepseq hspec QuickCheck text zlib ];
+  testDepends = [ async deepseq hspec network QuickCheck text zlib ];
   meta = {
     homepage = "https://github.com/fpco/streaming-commons";
     description = "Common lower-level functions needed by various streaming data libraries";