offlineimap: enable support for the sqlite status backend

This commit is contained in:
Jonas Hoersch 2013-04-12 13:13:32 +02:00
parent 70ba1888a2
commit 93c39d24b5
2 changed files with 8 additions and 2 deletions

View File

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

View File

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