aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/maildir-deduplicate/default.nix
blob: 33728ef4113c59db7730c616af0d7aa89b200376 (plain)
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
26
27
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, click
}:

buildPythonPackage rec {
  pname = "maildir-deduplicate";
  version = "2.1.0";
  disabled = !isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "263c7f2c85dafe06eaa15e8d7ab83817204f70a5f08cc25a607f3f01ed130b42";
  };

  propagatedBuildInputs = [ 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;
    broken = true;
  };

}