Unverified Commit 827f8944 authored by Yt's avatar Yt Committed by GitHub
Browse files

letsdns: init at 1.2.1 (#396558)

parents e02c44f9 9f085433
Loading
Loading
Loading
Loading
+58 −0
Original line number Diff line number Diff line
{
  lib,
  python3Packages,
  fetchFromGitHub,
  versionCheckHook,
  nix-update-script,
}:
let
  version = "1.2.1";
in
python3Packages.buildPythonApplication {
  pname = "letsdns";
  inherit version;
  pyproject = true;

  src = fetchFromGitHub {
    owner = "LetsDNS";
    repo = "letsdns";
    tag = version;
    hash = "sha256-TwGVm7sEOPvUqtvaAuIU/X5W3H4VAC8dskNunt8UO0I=";
  };

  build-system = [
    python3Packages.setuptools
  ];

  nativeCheckInputs = [
    python3Packages.pytestCheckHook
    versionCheckHook
  ];

  dependencies = with python3Packages; [
    cryptography
    dnspython
    requests
  ];

  disabledTestPaths = [
    # These tests require upstream certificates
    "tests/test_action.py"
  ];

  env = {
    UNITTEST_CONF = "tests/citest.conf";
  };

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Manage DANE TLSA records in DNS servers";
    homepage = "https://www.letsdns.de/";
    downloadPage = "https://github.com/LetsDNS/letsdns";
    changelog = "https://github.com/LetsDNS/letsdns/releases/tag/${version}";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ rseichter ];
    mainProgram = "letsdns";
  };
}