cloudflare-dyndns: 5.3 -> 5.4

Changelog available at [^1]. The most important fix is the issue where
it fails to read API token from a file if it ends with a newline. This
is particularly important since cloudflare-dyndns now reads services.
cloudflare-dyndns.apiTokenFile directly.

The list of fixes is small, making it suitable to be backported to NixOS
25.05.

[^1]: https://github.com/kissgyorgy/cloudflare-dyndns/releases/tag/v5.4

+2 -2
+2 -2
pkgs/by-name/cl/cloudflare-dyndns/package.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "cloudflare-dyndns"; 9 - version = "5.3"; 9 + version = "5.4"; 10 10 pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "kissgyorgy"; 14 14 repo = "cloudflare-dyndns"; 15 15 rev = "v${version}"; 16 - hash = "sha256-t0MqH9lDfl+cAnPYSG7P32OGO8Qpo1ep0Hj3Xl76lhU="; 16 + hash = "sha256-tCZX9CKDwGAZ8/rwI764uuE9SQ1A5WhVoqgUegJ19g4="; 17 17 }; 18 18 19 19 build-system = with python3.pkgs; [