Merge pull request #11906 from Painted-Fox/maildir-deduplicate

Add the python maildir-deduplicate package.
This commit is contained in:
Arseniy Seroka 2015-12-25 17:40:25 +03:00
commit 230c468eb6

View file

@ -22956,6 +22956,26 @@ in modules // {
};
};
maildir-deduplicate = buildPythonPackage rec {
name = "maildir-deduplicate-${version}";
version = "1.0.2";
disabled = !isPy27;
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/m/maildir-deduplicate/${name}.tar.gz";
sha256 = "1xy5z756alrjgpl9qx2gdx898rw1mryrqkwmipbh39mgrvkl3fz9";
};
propagatedBuildInputs = with self; [ click ];
meta = with stdenv.lib; {
description = "Command-line tool to deduplicate mails from a set of maildir folders";
homepage = "https://github.com/kdeldycke/maildir-deduplicate";
license = licenses.gpl2;
};
};
mps-youtube = buildPythonPackage rec {
name = "mps-youtube-${version}";