python3Packages.parsedmarc: 10.2.0 -> 10.4.3

Changelog: https://github.com/domainaware/parsedmarc/blob/10.4.3/CHANGELOG.md
This commit is contained in:
Fabian Affolter
2026-08-21 09:25:41 +02:00
parent 5d6f4b7405
commit b86e4990e9

View File

@@ -42,14 +42,14 @@ let
in
buildPythonPackage rec {
pname = "parsedmarc";
version = "10.2.0";
version = "10.4.3";
pyproject = true;
src = fetchFromGitHub {
owner = "domainaware";
repo = "parsedmarc";
tag = version;
hash = "sha256-ed6t96CcemrUE6NtBmP1Am7l7dYmcNLGFN8slTSfgOM=";
hash = "sha256-q5Zc0iWDBuuYfesmB2r8BeE32EmVsFPiChnXLEwX+SE=";
};
postPatch = ''
@@ -98,6 +98,10 @@ buildPythonPackage rec {
disabledTests = [
# contacts DNS servers at 1.1.1.1 and 8.8.8.8
"test_general_dns_settings_with_defaults"
"testErrorRaisedAfterRetriesExhausted"
"testTransientErrorIsRetried"
# AssertionError
"testWithoutAssumeUtcNaiveIsLocal"
];
pythonImportsCheck = [ "parsedmarc" ];