python3Packages.imap-tools: 1.9.0 -> 1.9.1

https://github.com/ikvk/imap_tools/blob/v1.9.1/docs/release_notes.rst
This commit is contained in:
Martin Weinelt
2025-01-27 10:55:43 +01:00
parent a846cde17a
commit e4bb0b99a7
@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "imap-tools";
version = "1.9.0";
version = "1.9.1";
pyproject = true;
src = fetchFromGitHub {
owner = "ikvk";
repo = "imap_tools";
tag = "v${version}";
hash = "sha256-2frJqHKIOuERC8G6fJwJOdxcWHRQRRy1BxfZDrVhXEU=";
hash = "sha256-tlShiI90PAbWztrL5PgmE1D+/h6bUoSxAHxwGlQHvus=";
};
build-system = [ setuptools ];
@@ -37,7 +37,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Work with email and mailbox by IMAP";
homepage = "https://github.com/ikvk/imap_tools";
changelog = "https://github.com/ikvk/imap_tools/blob/v${version}/docs/release_notes.rst";
changelog = "https://github.com/ikvk/imap_tools/blob/${src.tag}/docs/release_notes.rst";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};