Unverified Commit d22001e8 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

octodns: 1.10.0 -> 1.11.0, octodns-providers.bind: 0.0.6 -> 0.0.7 (#402887)

parents ffa93579 8fcae5ec
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -19,16 +19,16 @@ let
in
python3Packages.buildPythonApplication rec {
  pname = "octodns";
  version = "1.10.0";
  version = "1.11.0";
  pyproject = true;

  disabled = python.pythonOlder "3.8";
  disabled = python.pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "octodns";
    repo = "octodns";
    tag = "v${version}";
    hash = "sha256-L3c4lYt/fgMctJFArc1XlR+hvpz10kcBcYYXajnNQr0=";
    hash = "sha256-zCEfg6AAyclDBzSVQiGrE8Ol/9C7STq0VChepBt73GQ=";
  };

  build-system = with python3Packages; [
@@ -69,11 +69,11 @@ python3Packages.buildPythonApplication rec {
      '';
  };

  meta = with lib; {
  meta = {
    description = "Tools for managing DNS across multiple providers";
    homepage = "https://github.com/octodns/octodns";
    changelog = "https://github.com/octodns/octodns/blob/${src.rev}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = teams.octodns.members;
    license = lib.licenses.mit;
    maintainers = lib.teams.octodns.members;
  };
}
+7 −7
Original line number Diff line number Diff line
@@ -11,16 +11,16 @@

buildPythonPackage rec {
  pname = "octodns-bind";
  version = "0.0.6";
  version = "0.0.7";
  pyproject = true;

  disabled = pythonOlder "3.8";
  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "octodns";
    repo = "octodns-bind";
    rev = "v${version}";
    hash = "sha256-IxZr7Wds8wLfJg6rqCtJ59Sg/mCIJ1g9jDJ8CTM7O8w=";
    hash = "sha256-cJbmGh0YNIu9fYH4It5SZG39ZsFoiOBERQXRd7kz8FY=";
  };

  nativeBuildInputs = [
@@ -40,11 +40,11 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  meta = with lib; {
  meta = {
    description = "RFC compliant (Bind9) provider for octoDNS";
    homepage = "https://github.com/octodns/octodns-bind";
    changelog = "https://github.com/octodns/octodns-bind/blob/${src.rev}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = teams.octodns.members;
    license = lib.licenses.mit;
    maintainers = lib.teams.octodns.members;
  };
}