about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/mutag/default.nix
blob: f6e8020337c7be9f38d682170ff625b608c4fb00 (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
28
29
30
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, pyparsing
}:

buildPythonPackage {
  pname = "mutag";
  version = "0.0.2-2ffa0258ca";
  format = "setuptools";
  disabled = ! isPy3k;

  src = fetchFromGitHub {
    owner = "aroig";
    repo = "mutag";
    rev = "2ffa0258cadaf79313241f43bf2c1caaf197d9c2";
    hash = "sha256-YT3DGvYPyTuB70gg6p/3oXcTahEPcNuSIqe56xu3rSs=";
  };

  propagatedBuildInputs = [ pyparsing ];

  meta = with 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; [ ];
  };

}