2013-04-12 12:13:32 +01:00
|
|
|
{ pkgs, fetchurl, buildPythonPackage, sqlite3 }:
|
2010-04-12 22:03:22 +01:00
|
|
|
|
2012-04-30 13:47:30 +01:00
|
|
|
buildPythonPackage rec {
|
2013-11-04 18:39:13 +00:00
|
|
|
version = "6.5.5";
|
2012-04-30 13:47:30 +01:00
|
|
|
name = "offlineimap-${version}";
|
2013-07-30 20:30:34 +01:00
|
|
|
namePrefix = "";
|
2010-04-12 22:03:22 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-11-04 18:39:13 +00:00
|
|
|
url = "https://github.com/OfflineIMAP/offlineimap/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "00k84qagph3xnxss6rkxm61x07ngz8fvffx4z9jyw5baf3cdd32p";
|
2010-04-12 22:03:22 +01:00
|
|
|
};
|
|
|
|
|
2011-01-03 16:25:11 +00:00
|
|
|
doCheck = false;
|
2010-04-12 22:03:22 +01:00
|
|
|
|
2013-04-12 12:13:32 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
sqlite3
|
|
|
|
];
|
|
|
|
|
2010-04-12 22:03:22 +01:00
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers";
|
2012-04-30 13:47:30 +01:00
|
|
|
homepage = "http://offlineimap.org";
|
2013-02-23 09:55:11 +00:00
|
|
|
license = pkgs.lib.licenses.gpl2Plus;
|
|
|
|
maintainers = [ pkgs.lib.maintainers.garbas ];
|
2010-04-12 22:03:22 +01:00
|
|
|
};
|
|
|
|
}
|