11 buildPythonPackage rec {
16 src = fetchFromGitHub {
17 owner = "pallets-eco";
19 rev = "refs/tags/${version}";
20 hash = "sha256-G2Z8dj1/IuLsZoNJVrL6LYu0XjTEHtWB9Z058aqG9Ic=";
23 build-system = [ flit-core ];
30 pythonImportsCheck = [ "flask_mail" ];
32 nativeCheckInputs = [ pytestCheckHook ];
35 # Broken by fix for CVE-2023-27043.
36 # Reported upstream in https://github.com/pallets-eco/flask-mail/issues/233
37 "test_unicode_sender_tuple"
42 description = "Flask extension providing simple email sending capabilities";
43 homepage = "https://github.com/pallets-eco/flask-mail";
44 changelog = "https://github.com/pallets-eco/flask-mail/blob/${src.rev}/CHANGES.md";
45 license = lib.licenses.bsd3;