python3Packages.resend: 2.23.0 -> 2.30.1 (#523560)

This commit is contained in:
Fabian Affolter
2026-05-24 18:20:38 +00:00
committed by GitHub
@@ -3,21 +3,22 @@
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytest-asyncio,
pytestCheckHook,
requests,
typing-extensions,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "resend";
version = "2.23.0";
version = "2.30.1";
pyproject = true;
src = fetchFromGitHub {
owner = "resend";
repo = "resend-python";
tag = "v${version}";
hash = "sha256-kUcudZCIU8LNl7HgBDRJ85rPIZRBVgvbp12ZgbfAZ4k=";
tag = "v${finalAttrs.version}";
hash = "sha256-P9f5u7gOC7IqzlcmSIgxYX8+yn+57jifn2FP6zzHVRg=";
};
build-system = [ setuptools ];
@@ -27,15 +28,18 @@ buildPythonPackage rec {
typing-extensions
];
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "resend" ];
meta = {
description = "SDK for Resend";
homepage = "https://github.com/resend/resend-python";
changelog = "https://github.com/resend/resend-python/releases/tag/${src.tag}";
changelog = "https://github.com/resend/resend-python/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})