summary refs log tree commit diff
path: root/pkgs/development/python-modules/mutag/default.nix
blob: 0d5d8d75a368e25c8dc613e7d9d48a58fb42b159 (plain) (blame)
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
, fetchgit
, isPy3k
, pyparsing
}:

buildPythonPackage {
  name = "mutag-0.0.2-2ffa0258ca";
  disabled = ! isPy3k;

  src = fetchgit {
    url = "https://github.com/aroig/mutag.git";
    sha256 = "0axdnwdypfd74a9dnw0g25m16xx1yygyl828xy0kpj8gyqdc6gb1";
    rev = "2ffa0258cadaf79313241f43bf2c1caaf197d9c2";
  };

  propagatedBuildInputs = [ pyparsing ];

  meta = with stdenv.lib; {
    homepage = https://github.com/aroig/mutag;
    description = "A script to change email tags in a mu indexed maildir";
    license = licenses.gpl3;
    maintainers = with maintainers; [ ];
  };

}