imapdedup: init at 1.1 (#355169)

imapdedup: init ad 1.1
This commit is contained in:
Yohann Boniface
2024-12-21 15:47:46 +01:00
committed by GitHub
parent 13e8efc52b
commit e5faa4fb51
+31
View File
@@ -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";
};
}