Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / mutag / default.nix
blob3ceb5e966c2bd49c0ae4637091547583c04a1729
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , isPy3k
5 , pyparsing
6 }:
8 buildPythonPackage {
9   pname = "mutag";
10   version = "0.0.2-2ffa0258ca";
11   disabled = ! isPy3k;
13   src = fetchFromGitHub {
14     owner = "aroig";
15     repo = "mutag";
16     rev = "2ffa0258cadaf79313241f43bf2c1caaf197d9c2";
17     hash = "sha256-YT3DGvYPyTuB70gg6p/3oXcTahEPcNuSIqe56xu3rSs=";
18   };
20   propagatedBuildInputs = [ pyparsing ];
22   meta = with lib; {
23     homepage = "https://github.com/aroig/mutag";
24     description = "A script to change email tags in a mu indexed maildir";
25     license = licenses.gpl3;
26     maintainers = with maintainers; [ ];
27   };