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

buildPythonPackage {
  name = "offlineimap-6.2.0.2";

  src = fetchurl {
    url = "http://ftp.de.debian.org/debian/pool/main/o/offlineimap/offlineimap_6.2.0.2.orig.tar.gz";
    sha256 = "1w69qv1dm37m53k8cd068lk5z3qjlscnjxr397gs8kdsfds67v7c";
  };

  propagatedBuildInputs = [ ssl ];

  doCheck = false;

  meta = {
    description = "IMAP to local files bridge";
    homepage = "http://software.complete.org/software/projects/show/offlineimap";
    license = "GPLv2+";
  };
}