Unverified Commit 19d259ed authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python310Packages.pycfdns: 2.0.0 -> 2.0.1
parents 291315ce b00e6f2a
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -7,14 +7,14 @@

buildPythonPackage rec {
  pname = "pycfdns";
  version = "2.0.0";
  version = "2.0.1";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "ludeeus";
    repo = pname;
    rev = version;
    sha256 = "sha256-2vjeoI+IqvCIHb51BLkuTISbG0PxFGHlmpSiCaV+E0w=";
    rev = "refs/tags/${version}";
    hash = "sha256-f6kxYX/dg16OWYpw29dH4Z26ncLZCYyHKGc4fzoCld0=";
  };

  propagatedBuildInputs = [
@@ -32,6 +32,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python module for updating Cloudflare DNS A records";
    homepage = "https://github.com/ludeeus/pycfdns";
    changelog = "https://github.com/ludeeus/pycfdns/releases/tag/${version}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };