Merge pull request #477 from coroa/offlineimap
offlineimap: enable support for the sqlite status backend
This commit is contained in:
commit
f1184916dd
@ -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";
|
||||||
|
@ -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 { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user