Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mutag / default.nix
blob9076464d457ce1ec0b96f52c455e29c84cc0c4b8
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , isPy3k
5 , pyparsing
6 }:
8 buildPythonPackage {
9   pname = "mutag";
10   version = "0.0.2-2ffa0258ca";
11   format = "setuptools";
12   disabled = ! isPy3k;
14   src = fetchFromGitHub {
15     owner = "aroig";
16     repo = "mutag";
17     rev = "2ffa0258cadaf79313241f43bf2c1caaf197d9c2";
18     hash = "sha256-YT3DGvYPyTuB70gg6p/3oXcTahEPcNuSIqe56xu3rSs=";
19   };
21   propagatedBuildInputs = [ pyparsing ];
23   meta = with lib; {
24     homepage = "https://github.com/aroig/mutag";
25     description = "A script to change email tags in a mu indexed maildir";
26     mainProgram = "mutag";
27     license = licenses.gpl3;
28     maintainers = with maintainers; [ ];
29   };