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

26 lines
674 B
Nix
Raw Normal View History

{ pkgs, fetchurl, buildPythonPackage, sqlite3 }:
buildPythonPackage rec {
2015-05-26 15:12:40 +02:00
version = "6.5.7";
name = "offlineimap-${version}";
namePrefix = "";
src = fetchurl {
2013-11-04 19:39:13 +01:00
url = "https://github.com/OfflineIMAP/offlineimap/archive/v${version}.tar.gz";
2015-05-26 15:12:40 +02:00
sha256 = "18whwc4f8nk8gi3mjw9153c9cvwd3i9i7njmpdbhcplrv33m5pmp";
};
doCheck = false;
propagatedBuildInputs = [
sqlite3
];
meta = {
description = "Synchronize 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 ];
};
}