python313Packages.publicsuffixlist: 1.0.2.20251018 -> 1.0.2.20251025 (#455519)

This commit is contained in:
Fabian Affolter
2025-10-25 14:41:58 +00:00
committed by GitHub
2 changed files with 8 additions and 7 deletions
@@ -21,9 +21,7 @@
buildPythonPackage rec {
pname = "checkdmarc";
version = "5.10.12";
format = "pyproject";
disabled = pythonOlder "3.7";
pyproject = true;
src = fetchFromGitHub {
owner = "domainaware";
@@ -32,7 +30,10 @@ buildPythonPackage rec {
hash = "sha256-XbBdBef3+kt26XP5GDH5rgHYGh8xIjHUUVOcdeVICLs=";
};
pythonRelaxDeps = [ "xmltodict" ];
pythonRelaxDeps = [
"cryptography"
"xmltodict"
];
build-system = [ hatchling ];
@@ -69,10 +70,10 @@ buildPythonPackage rec {
meta = with lib; {
description = "Parser for SPF and DMARC DNS records";
mainProgram = "checkdmarc";
homepage = "https://github.com/domainaware/checkdmarc";
changelog = "https://github.com/domainaware/checkdmarc/blob/${src.tag}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
mainProgram = "checkdmarc";
};
}
@@ -11,14 +11,14 @@
buildPythonPackage rec {
pname = "publicsuffixlist";
version = "1.0.2.20251018";
version = "1.0.2.20251025";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-QDIAZa0slqNRcDoJ7pOuFIzntlCfbIfNrjvPmSznYdI=";
hash = "sha256-LDvywIPdR3bJayk8waoPzaTg48RKCurG0ZUToxtMaM8=";
};
build-system = [ setuptools ];