2016-01-02 08:58:36 -08:00
|
|
|
{ pkgs, fetchFromGitHub, buildPythonPackage, sqlite3 }:
|
2010-04-12 14:03:22 -07:00
|
|
|
|
2012-04-30 05:47:30 -07:00
|
|
|
buildPythonPackage rec {
|
2016-01-02 08:58:36 -08:00
|
|
|
version = "6.6.1";
|
2012-04-30 05:47:30 -07:00
|
|
|
name = "offlineimap-${version}";
|
2013-07-30 12:30:34 -07:00
|
|
|
namePrefix = "";
|
2010-04-12 14:03:22 -07:00
|
|
|
|
2016-01-02 08:58:36 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OfflineIMAP";
|
|
|
|
repo = "offlineimap";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0nn1qkxqy84h0a2acd1yx861wslh2fjfznkcq15856npbd34yqy5";
|
2010-04-12 14:03:22 -07:00
|
|
|
};
|
|
|
|
|
2011-01-03 08:25:11 -08:00
|
|
|
doCheck = false;
|
2010-04-12 14:03:22 -07:00
|
|
|
|
2013-04-12 04:13:32 -07:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
sqlite3
|
|
|
|
];
|
|
|
|
|
2010-04-12 14:03:22 -07:00
|
|
|
meta = {
|
2013-10-06 02:49:53 -07:00
|
|
|
description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers";
|
2012-04-30 05:47:30 -07:00
|
|
|
homepage = "http://offlineimap.org";
|
2013-02-23 01:55:11 -08:00
|
|
|
license = pkgs.lib.licenses.gpl2Plus;
|
|
|
|
maintainers = [ pkgs.lib.maintainers.garbas ];
|
2010-04-12 14:03:22 -07:00
|
|
|
};
|
|
|
|
}
|