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

26 lines
702 B
Nix
Raw Normal View History

2016-10-13 15:03:12 -07:00
{ stdenv, fetchFromGitHub, pythonPackages, }:
2016-07-23 09:59:01 -07:00
pythonPackages.buildPythonApplication rec {
2017-01-17 14:04:37 -08:00
version = "7.0.12";
name = "offlineimap-${version}";
namePrefix = "";
2016-01-02 08:58:36 -08:00
src = fetchFromGitHub {
owner = "OfflineIMAP";
repo = "offlineimap";
rev = "v${version}";
2017-01-17 14:04:37 -08:00
sha256 = "1i83p40lxjqnvh88x623iydrwnsxib1k91qbl9myc4hi5i4fnr6x";
};
doCheck = false;
2016-10-13 15:03:12 -07: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 ];
};
}