Commit 1f836cf7 authored by Alexandru Scvorțov's avatar Alexandru Scvorțov
Browse files

octodns-providers.hetzner: 1.0.0 -> 2.0.0

parent a4135fc1
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  hcloud,
  octodns,
  pytestCheckHook,
  requests,
@@ -11,14 +12,14 @@

buildPythonPackage rec {
  pname = "octodns-hetzner";
  version = "1.0.0";
  version = "2.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "octodns";
    repo = "octodns-hetzner";
    tag = "v${version}";
    hash = "sha256-JYVztSO38y4F+p0glgtT9/QRdt9uDnOziMFXxBikzLg=";
    hash = "sha256-aWWT/LShHxWOfNhBr7vCeG9bA6yXEutO2NJic18szL8=";
  };

  build-system = [
@@ -28,6 +29,7 @@ buildPythonPackage rec {
  dependencies = [
    octodns
    requests
    hcloud
  ];

  pythonImportsCheck = [ "octodns_hetzner" ];