1{ pkgs, fetchurl, buildPythonPackage, sqlite3 }:
2
3buildPythonPackage rec {
4 version = "6.5.7";
5 name = "offlineimap-${version}";
6 namePrefix = "";
7
8 src = fetchurl {
9 url = "https://github.com/OfflineIMAP/offlineimap/archive/v${version}.tar.gz";
10 sha256 = "18whwc4f8nk8gi3mjw9153c9cvwd3i9i7njmpdbhcplrv33m5pmp";
11 };
12
13 doCheck = false;
14
15 propagatedBuildInputs = [
16 sqlite3
17 ];
18
19 meta = {
20 description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers";
21 homepage = "http://offlineimap.org";
22 license = pkgs.lib.licenses.gpl2Plus;
23 maintainers = [ pkgs.lib.maintainers.garbas ];
24 };
25}