2012-02-22 00:35:35 +01:00
|
|
|
{ fetchurl, buildPythonPackage }:
|
2010-04-12 23:03:22 +02:00
|
|
|
|
2012-04-30 14:47:30 +02:00
|
|
|
buildPythonPackage rec {
|
|
|
|
version = "6.5.3";
|
|
|
|
name = "offlineimap-${version}";
|
2010-04-12 23:03:22 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-04-30 14:47:30 +02:00
|
|
|
url = "https://github.com/spaetz/offlineimap/tarball/v${version}";
|
|
|
|
name = "${name}.tar.bz";
|
|
|
|
sha256 = "8717a56e6244b47b908b23b598efb3470d74450ecd881b6d3573d8aec4a5db38";
|
2010-04-12 23:03:22 +02:00
|
|
|
};
|
|
|
|
|
2011-01-03 17:25:11 +01:00
|
|
|
doCheck = false;
|
2010-04-12 23:03:22 +02:00
|
|
|
|
|
|
|
meta = {
|
2012-04-30 14:47:30 +02:00
|
|
|
description = "OfflineImap synchronizes emails between two repositories, so that you can read the same mailbox from multiple computers.";
|
|
|
|
homepage = "http://offlineimap.org";
|
2010-04-12 23:03:22 +02:00
|
|
|
license = "GPLv2+";
|
|
|
|
};
|
|
|
|
}
|