nixpkgs/pkgs/tools/networking/offlineimap/default.nix

26 lines
701 B
Nix
Raw Normal View History

2016-10-13 22:03:12 +00:00
{ stdenv, fetchFromGitHub, pythonPackages, }:
2016-07-23 16:59:01 +00:00
pythonPackages.buildPythonApplication rec {
2016-11-20 13:50:44 +00:00
version = "7.0.9";
name = "offlineimap-${version}";
namePrefix = "";
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";
};
doCheck = false;
2016-10-13 22:03:12 +00: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 ];
};
}