linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / mutag / default.nix
blobee190008f592bb800b5a2af3e328d2e97434c63a
1 { lib
2 , buildPythonPackage
3 , fetchgit
4 , isPy3k
5 , pyparsing
6 }:
8 buildPythonPackage {
9   pname = "mutag";
10   version = "0.0.2-2ffa0258ca";
11   disabled = ! isPy3k;
13   src = fetchgit {
14     url = "https://github.com/aroig/mutag.git";
15     sha256 = "0axdnwdypfd74a9dnw0g25m16xx1yygyl828xy0kpj8gyqdc6gb1";
16     rev = "2ffa0258cadaf79313241f43bf2c1caaf197d9c2";
17   };
19   propagatedBuildInputs = [ pyparsing ];
21   meta = with lib; {
22     homepage = "https://github.com/aroig/mutag";
23     description = "A script to change email tags in a mu indexed maildir";
24     license = licenses.gpl3;
25     maintainers = with maintainers; [ ];
26   };