Unverified Commit 678813fb authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents dc86224e 6b79257c
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -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";
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -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 ];