From accf1514b6bbd19cee8cf949d236fce11cc8264a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 21 Jul 2022 15:02:21 +0200 Subject: [PATCH] python3Packages.mailsuite: 1.8.0 -> 1.9.2 --- .../python-modules/mailsuite/default.nix | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mailsuite/default.nix b/pkgs/development/python-modules/mailsuite/default.nix index 8e582e9227ec..adc6ec35051d 100644 --- a/pkgs/development/python-modules/mailsuite/default.nix +++ b/pkgs/development/python-modules/mailsuite/default.nix @@ -4,32 +4,44 @@ , lib # pythonPackages +, hatchling , dnspython +, expiringdict , html2text , mail-parser , imapclient +, publicsuffix2 }: buildPythonPackage rec { pname = "mailsuite"; - version = "1.8.0"; + version = "1.9.2"; + format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-ItGOHnYL5rJvllcU/xAie95f09TnCf4OF4Y9oN65FTY="; + hash = "sha256-UV9cdWdUnUt4j1Puf1H0UxXsCHi3t4uNiKHwYNfTfa4="; }; + nativeBuildInputs = [ + hatchling + ]; + propagatedBuildInputs = [ dnspython + expiringdict html2text mail-parser imapclient + publicsuffix2 ]; pythonImportsCheck = [ "mailsuite" ]; + doCheck = false; + meta = { description = "A Python package to simplify receiving, parsing, and sending email"; homepage = "https://seanthegeek.github.io/mailsuite/";