diff --git a/pkgs/development/python-modules/checkdmarc/default.nix b/pkgs/development/python-modules/checkdmarc/default.nix index 4a9516747755..7aa4c13c52b4 100644 --- a/pkgs/development/python-modules/checkdmarc/default.nix +++ b/pkgs/development/python-modules/checkdmarc/default.nix @@ -18,16 +18,16 @@ xmltodict, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "checkdmarc"; - version = "5.13.1"; + version = "5.13.2"; pyproject = true; src = fetchFromGitHub { owner = "domainaware"; repo = "checkdmarc"; - tag = version; - hash = "sha256-/y5fFRqnlxrPrg5WAUfTQnuyShiqnqXrAZfShQnGvgc="; + tag = finalAttrs.version; + hash = "sha256-Ub/B3IO7f5Ah2XNTJ90Y6whP+PIDCL7ucHGd5sWwJRk="; }; pythonRelaxDeps = [ @@ -71,9 +71,9 @@ buildPythonPackage rec { meta = { description = "Parser for SPF and DMARC DNS records"; homepage = "https://github.com/domainaware/checkdmarc"; - changelog = "https://github.com/domainaware/checkdmarc/blob/${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/domainaware/checkdmarc/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; mainProgram = "checkdmarc"; }; -} +})