From 47e5c2aa5f3662bdd7e7913b7a2a9d4f7714b99b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 6 Aug 2024 17:23:32 +0200 Subject: [PATCH] python312Packages.aiosmtplib: 3.0.1 -> 3.0.2 Diff: https://github.com/cole/aiosmtplib/compare/refs/tags/v3.0.1...v3.0.2 Changelog: https://github.com/cole/aiosmtplib/releases/tag/v3.0.2 --- pkgs/development/python-modules/aiosmtplib/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/aiosmtplib/default.nix b/pkgs/development/python-modules/aiosmtplib/default.nix index fa8822675a22..59e0fc5bd597 100644 --- a/pkgs/development/python-modules/aiosmtplib/default.nix +++ b/pkgs/development/python-modules/aiosmtplib/default.nix @@ -4,7 +4,7 @@ buildPythonPackage, fetchFromGitHub, hypothesis, - poetry-core, + hatchling, pytest-asyncio, pytestCheckHook, pythonOlder, @@ -13,8 +13,8 @@ buildPythonPackage rec { pname = "aiosmtplib"; - version = "3.0.1"; - format = "pyproject"; + version = "3.0.2"; + pyproject = true; disabled = pythonOlder "3.7"; @@ -22,10 +22,10 @@ buildPythonPackage rec { owner = "cole"; repo = "aiosmtplib"; rev = "refs/tags/v${version}"; - hash = "sha256-67Z+k+PBIGP2oGb/52dMtsapUsHufvFcX+wWiMj5Jsg="; + hash = "sha256-1GuxlgNvzVv6hEQY1Mkv7NxAoOik9gpIS90a6flfC+k="; }; - nativeBuildInputs = [ poetry-core ]; + build-system = [ hatchling ]; nativeCheckInputs = [ aiosmtpd