Merge pull request #477 from coroa/offlineimap

offlineimap: enable support for the sqlite status backend
This commit is contained in:
Rok Garbas 2013-04-23 03:47:15 -07:00
commit f1184916dd
2 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ pkgs, fetchurl, buildPythonPackage }: { pkgs, fetchurl, buildPythonPackage, sqlite3 }:
buildPythonPackage rec { buildPythonPackage rec {
version = "6.5.5-rc2"; version = "6.5.5-rc2";
@ -12,6 +12,10 @@ buildPythonPackage rec {
doCheck = false; doCheck = false;
propagatedBuildInputs = [
sqlite3
];
meta = { meta = {
description = "OfflineImap synchronizes emails between two repositories, so that you can read the same mailbox from multiple computers."; description = "OfflineImap synchronizes emails between two repositories, so that you can read the same mailbox from multiple computers.";
homepage = "http://offlineimap.org"; homepage = "http://offlineimap.org";

View File

@ -1298,7 +1298,9 @@ let
odt2txt = callPackage ../tools/text/odt2txt { }; odt2txt = callPackage ../tools/text/odt2txt { };
offlineimap = callPackage ../tools/networking/offlineimap { }; offlineimap = callPackage ../tools/networking/offlineimap {
inherit (pythonPackages) sqlite3;
};
opendbx = callPackage ../development/libraries/opendbx { }; opendbx = callPackage ../development/libraries/opendbx { };