Merge pull request #203912 from r-ryantm/auto-update/python310Packages.pycfdns

python310Packages.pycfdns: 2.0.0 -> 2.0.1

authored by

Fabian Affolter and committed by
GitHub
19d259ed 291315ce

+4 -3
+4 -3
pkgs/development/python-modules/pycfdns/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pycfdns"; 10 - version = "2.0.0"; 10 + version = "2.0.1"; 11 11 format = "setuptools"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "ludeeus"; 15 15 repo = pname; 16 - rev = version; 17 - sha256 = "sha256-2vjeoI+IqvCIHb51BLkuTISbG0PxFGHlmpSiCaV+E0w="; 16 + rev = "refs/tags/${version}"; 17 + hash = "sha256-f6kxYX/dg16OWYpw29dH4Z26ncLZCYyHKGc4fzoCld0="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [ ··· 32 32 meta = with lib; { 33 33 description = "Python module for updating Cloudflare DNS A records"; 34 34 homepage = "https://github.com/ludeeus/pycfdns"; 35 + changelog = "https://github.com/ludeeus/pycfdns/releases/tag/${version}"; 35 36 license = with licenses; [ mit ]; 36 37 maintainers = with maintainers; [ fab ]; 37 38 };