Commit 8fcae5ec authored by Anthony ROUSSEL's avatar Anthony ROUSSEL
Browse files
parent d39e75bb
Loading
Loading
Loading
Loading
+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;
  };
}