diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -1,19 +1,15 @@
 #!/usr/bin/runhaskell
 
+import Control.Monad (when)
 import Distribution.Simple
 import Distribution.Simple.LocalBuildInfo (LocalBuildInfo(buildDir))
 import Distribution.Simple.Program
 import System.Cmd
 import System.Exit
 
-main = defaultMainWithHooks simpleUserHooks {
-         postBuild =
-             \ _ _ _ lbi ->
-                 case buildDir lbi of
-                   "dist-ghc/build" -> return ()
-                   _ -> runTestScript lbi
-       -- , runTests = \ _ _ _ lbi -> runTestScript lbi
-       }
+main = defaultMainWithHooks simpleUserHooks
+       {- { postBuild = \ _ _ _ lbi -> when (buildDir lbi /= "dist-ghc/build") (runTestScript lbi)
+          , runTests = \ _ _ _ lbi -> runTestScript lbi } -}
 
 runTestScript lbi =
     system (buildDir lbi ++ "/cabal-debian-tests/cabal-debian-tests") >>= \ code ->
diff --git a/cabal-debian.cabal b/cabal-debian.cabal
--- a/cabal-debian.cabal
+++ b/cabal-debian.cabal
@@ -1,5 +1,5 @@
 Name:           cabal-debian
-Version:        3.4
+Version:        3.4.1
 License:        BSD3
 License-File:   debian/copyright
 Author:         David Fox <dsf@seereason.com>
@@ -31,9 +31,7 @@
  GHC-Options: -threaded -Wall -O2
  Build-Depends:
    ansi-wl-pprint,
-   applicative-extras,
    base < 5,
-   bytestring,
    Cabal >= 1.9,
    containers,
    data-lens,
@@ -44,7 +42,6 @@
    hsemail,
    HUnit,
    mtl,
-   network,
    parsec >= 3,
    process,
    pureMD5,
@@ -52,7 +49,6 @@
    syb,
    text,
    unix,
-   Unixutils >= 1.50,
    utf8-string
  Exposed-Modules:
    Data.Algorithm.Diff.Context
diff --git a/debian/changelog b/debian/changelog
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+haskell-cabal-debian (3.4.1) unstable; urgency=low
+
+  * Remove call to test script in Setup.hs
+  * Remove unused dependencies
+
+ -- David Fox <dsf@seereason.com>  Mon, 10 Jun 2013 09:12:38 -0700
+
 haskell-cabal-debian (3.4) unstable; urgency=low
 
   * Add support for modifying the Provides and Replaces fields.
