about summary refs log tree commit diff
path: root/pkgs/tools/networking/offlineimap
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2011-01-03 16:25:11 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2011-01-03 16:25:11 +0000
commitc1eb464f3c6300fcf57c06942b07cb7cb66cc408 (patch)
treefebc26625afcd576ba4f075d8af81a247edd768d /pkgs/tools/networking/offlineimap
parente1309dee31aa5221d07997bf5ed73baa36094b15 (diff)
downloadnixlib-c1eb464f3c6300fcf57c06942b07cb7cb66cc408.tar
nixlib-c1eb464f3c6300fcf57c06942b07cb7cb66cc408.tar.gz
nixlib-c1eb464f3c6300fcf57c06942b07cb7cb66cc408.tar.bz2
nixlib-c1eb464f3c6300fcf57c06942b07cb7cb66cc408.tar.lz
nixlib-c1eb464f3c6300fcf57c06942b07cb7cb66cc408.tar.xz
nixlib-c1eb464f3c6300fcf57c06942b07cb7cb66cc408.tar.zst
nixlib-c1eb464f3c6300fcf57c06942b07cb7cb66cc408.zip
* Build those Python modules in the Python distribution that require
  additional dependencies (e.g. SQLite, X11, or Tcl/Tk) outside the
  main Python package (i.e., pythonBase).  This makes pythonFull
  unnecessary: you can just pass the additional modules as
  buildInputs to packages that require them, e.g.

    buildInputs = [ pythonModules.sqlite3 ];

svn path=/nixpkgs/branches/modular-python/; revision=25364
Diffstat (limited to 'pkgs/tools/networking/offlineimap')
-rw-r--r--pkgs/tools/networking/offlineimap/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/tools/networking/offlineimap/default.nix b/pkgs/tools/networking/offlineimap/default.nix
index bb123d87bdf4..8f0dd8e9a6cb 100644
--- a/pkgs/tools/networking/offlineimap/default.nix
+++ b/pkgs/tools/networking/offlineimap/default.nix
@@ -1,4 +1,4 @@
-{fetchurl, buildPythonPackage}:
+{ fetchurl, buildPythonPackage, ssl }:
 
 buildPythonPackage {
   name = "offlineimap-6.2.0.2";
@@ -8,10 +8,9 @@ buildPythonPackage {
     sha256 = "1w69qv1dm37m53k8cd068lk5z3qjlscnjxr397gs8kdsfds67v7c";
   };
 
-  doCheck = false;
+  propagatedBuildInputs = [ ssl ];
 
-  preConfigure = "set -x";
-  buildInputs = [ ];
+  doCheck = false;
 
   meta = {
     description = "IMAP to local files bridge";