Skip to content

Commit

Permalink
imapdedup: init at 1.1 (NixOS#355169)
Browse files Browse the repository at this point in the history
imapdedup: init ad 1.1
  • Loading branch information
Sigmanificient authored Dec 21, 2024
1 parent 13e8efc commit e5faa4f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/by-name/im/imapdedup/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
lib,
python3Packages,
fetchFromGitHub,
}:
python3Packages.buildPythonApplication rec {
pname = "imapdedup";
version = "1.1";
pyproject = true;

src = fetchFromGitHub {
owner = "quentinsf";
repo = "IMAPdedup";
rev = "refs/tags/${version}";
hash = "sha256-s49nnMjX1beZKTrlcjzp0nESIVRb/LZDycpnzz8fG+o=";
};

build-system = with python3Packages; [ hatchling ];

doCheck = false; # no tests

pythonImportsCheck = [ "imapdedup" ];

meta = {
description = "Duplicate email message remover";
homepage = "https://github.com/quentinsf/IMAPdedup";
maintainers = with lib.maintainers; [ sigmanificient ];
license = with lib.licenses; [ gpl2Only ];
mainProgram = "imapdedup";
};
}

0 comments on commit e5faa4f

Please sign in to comment.