My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/mutag/default.nix

29 lines
626 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, pyparsing
}:
buildPythonPackage {
pname = "mutag";
version = "0.0.2-2ffa0258ca";
disabled = ! isPy3k;
src = fetchFromGitHub {
owner = "aroig";
repo = "mutag";
rev = "2ffa0258cadaf79313241f43bf2c1caaf197d9c2";
sha256 = "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; [ ];
};
}