2016-10-14 00:03:12 +02:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages, }:
|
2010-04-12 23:03:22 +02:00
|
|
|
|
2016-07-23 18:59:01 +02:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2017-01-29 17:20:22 +01:00
|
|
|
version = "7.0.13";
|
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
|
|
|
|
2016-01-02 17:58:36 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OfflineIMAP";
|
|
|
|
repo = "offlineimap";
|
|
|
|
rev = "v${version}";
|
2017-01-29 17:20:22 +01:00
|
|
|
sha256 = "0108xmp9df6cb1nzw3ym59mir3phgfdgp5d43n44ymsk2cc39xcc";
|
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
|
|
|
|
2016-10-14 00:03:12 +02:00
|
|
|
propagatedBuildInputs = [ pythonPackages.six ];
|
2013-04-12 13:13:32 +02:00
|
|
|
|
2010-04-12 23:03:22 +02:00
|
|
|
meta = {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers";
|
2012-04-30 14:47:30 +02:00
|
|
|
homepage = "http://offlineimap.org";
|
2016-01-02 18:15:48 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.garbas ];
|
2010-04-12 23:03:22 +02:00
|
|
|
};
|
|
|
|
}
|