2013-04-12 13:13:32 +02:00
|
|
|
{ pkgs, fetchurl, buildPythonPackage, sqlite3 }:
|
2010-04-12 23:03:22 +02:00
|
|
|
|
2012-04-30 14:47:30 +02:00
|
|
|
buildPythonPackage rec {
|
2013-02-23 10:51:14 +01:00
|
|
|
version = "6.5.5-rc2";
|
2012-04-30 14:47:30 +02:00
|
|
|
name = "offlineimap-${version}";
|
2013-07-30 21:30:34 +02:00
|
|
|
namePrefix = "";
|
2010-04-12 23:03:22 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-02-23 10:51:14 +01:00
|
|
|
url = "https://github.com/OfflineIMAP/offlineimap/tarball/v${version}";
|
2012-04-30 14:47:30 +02:00
|
|
|
name = "${name}.tar.bz";
|
2013-02-23 10:51:14 +01:00
|
|
|
sha256 = "03w3irh8pxwvivi139xm5iaj2f8vmriak1ispq9d9f84z1098pd3";
|
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
|
|
|
|
2013-04-12 13:13:32 +02:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
sqlite3
|
|
|
|
];
|
|
|
|
|
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";
|
2013-02-23 10:55:11 +01:00
|
|
|
license = pkgs.lib.licenses.gpl2Plus;
|
|
|
|
maintainers = [ pkgs.lib.maintainers.garbas ];
|
2010-04-12 23:03:22 +02:00
|
|
|
};
|
|
|
|
}
|