summary refs log tree commit diff
path: root/pkgs/tools/networking/offlineimap/default.nix
blob: 1b1aa768a25f0301b8e3f30601c2de09f32a4691 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ pkgs, fetchurl, buildPythonPackage, sqlite3 }:

buildPythonPackage rec {
  version = "6.5.5-rc2";
  name = "offlineimap-${version}";

  src = fetchurl {
    url = "https://github.com/OfflineIMAP/offlineimap/tarball/v${version}";
    name = "${name}.tar.bz";
    sha256 = "03w3irh8pxwvivi139xm5iaj2f8vmriak1ispq9d9f84z1098pd3";
  };

  doCheck = false;

  propagatedBuildInputs = [
    sqlite3
  ];

  meta = {
    description = "OfflineImap synchronizes emails between two repositories, so that you can read the same mailbox from multiple computers.";
    homepage = "http://offlineimap.org";
    license = pkgs.lib.licenses.gpl2Plus;
    maintainers = [ pkgs.lib.maintainers.garbas ];
  };
}