2016-10-13 22:03:12 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages, }:
|
2010-04-12 21:03:22 +00:00
|
|
|
|
2016-07-23 16:59:01 +00:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2016-11-20 13:50:44 +00:00
|
|
|
version = "7.0.9";
|
2012-04-30 12:47:30 +00:00
|
|
|
name = "offlineimap-${version}";
|
2013-07-30 19:30:34 +00:00
|
|
|
namePrefix = "";
|
2010-04-12 21:03:22 +00:00
|
|
|
|
2016-01-02 16:58:36 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OfflineIMAP";
|
|
|
|
repo = "offlineimap";
|
|
|
|
rev = "v${version}";
|
2016-11-20 13:50:44 +00:00
|
|
|
sha256 = "1jrg6n4fpww98vj7gfp2li9ab4pbnrpb249cqa1bs8jjwpmrsqac";
|
2010-04-12 21:03:22 +00:00
|
|
|
};
|
|
|
|
|
2011-01-03 16:25:11 +00:00
|
|
|
doCheck = false;
|
2010-04-12 21:03:22 +00:00
|
|
|
|
2016-10-13 22:03:12 +00:00
|
|
|
propagatedBuildInputs = [ pythonPackages.six ];
|
2013-04-12 11:13:32 +00:00
|
|
|
|
2010-04-12 21:03:22 +00:00
|
|
|
meta = {
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers";
|
2012-04-30 12:47:30 +00:00
|
|
|
homepage = "http://offlineimap.org";
|
2016-01-02 17:15:48 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.garbas ];
|
2010-04-12 21:03:22 +00:00
|
|
|
};
|
|
|
|
}
|