26 lines
701 B
Nix
Raw Normal View History

2016-10-14 00:03:12 +02:00
{ stdenv, fetchFromGitHub, pythonPackages, }:
2016-07-23 18:59:01 +02:00
pythonPackages.buildPythonApplication rec {
2016-11-20 14:50:44 +01:00
version = "7.0.9";
name = "offlineimap-${version}";
namePrefix = "";
2016-01-02 17:58:36 +01:00
src = fetchFromGitHub {
owner = "OfflineIMAP";
repo = "offlineimap";
rev = "v${version}";
2016-11-20 14:50:44 +01:00
sha256 = "1jrg6n4fpww98vj7gfp2li9ab4pbnrpb249cqa1bs8jjwpmrsqac";
};
doCheck = false;
2016-10-14 00:03:12 +02:00
propagatedBuildInputs = [ pythonPackages.six ];
meta = {
description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers";
homepage = "http://offlineimap.org";
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.garbas ];
};
}