python3Packages.dnsight: init at 1.0.1

SDK and CLI tool for DNS, email and web security hygiene

https://github.com/dnsight/dnsight
This commit is contained in:
Fabian Affolter
2026-04-13 22:22:23 +02:00
parent f28103dcf0
commit ef9d513354
3 changed files with 100 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
{ python3Packages }:
(python3Packages.toPythonApplication python3Packages.dnsight).overrideAttrs {
__structuredAttrs = true;
}
@@ -0,0 +1,93 @@
{
lib,
stdenv,
buildPythonPackage,
cryptography,
dnspython,
fetchFromGitHub,
hatch-vcs,
hatchling,
httpx,
hypothesis,
iana-etc,
libredirect,
pydantic,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
pyyaml,
rich,
typer,
}:
buildPythonPackage (finalAttrs: {
pname = "dnsight";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "dnsight";
repo = "dnsight";
tag = "v${finalAttrs.version}";
hash = "sha256-WoYLAqNTbMVe+kd/cG1MPRSlYMMYPWP8wm96qr3IdY8=";
};
pythonRelaxDeps = [ "typer" ];
build-system = [
hatch-vcs
hatchling
];
dependencies = [
cryptography
dnspython
httpx
pydantic
pyyaml
rich
typer
];
nativeCheckInputs = [
hypothesis
pytest-asyncio
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "dnsight" ];
preCheck = lib.optionalString stdenv.hostPlatform.isLinux ''
echo "nameserver 127.0.0.1" > resolv.conf
export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols:/etc/resolv.conf=$(realpath resolv.conf)
export LD_PRELOAD=${libredirect}/lib/libredirect.so
'';
postCheck = ''
unset NIX_REDIRECTS LD_PRELOAD
'';
disabledTests = [
# AssertionError
"test_audit_explicit_domains_honour_global_config_path"
"test_audit_manifest_runs_only_configured_checks"
# AssertionError: assert (None is not None)
"test_check_dmarc_async_config_slice_overrides_config"
"test_check_dmarc_sync_config_slice_overrides_config"
"test_check_spf_sync_with_mgr"
"test_run_check_for_target_matches_run_zone"
"test_run_check_sync_dmarc"
"test_run_check_sync_programmatic_config_no_file"
"test_run_check_sync_yaml_plus_overlay_merge"
];
meta = {
description = "SDK and CLI tool for DNS, email and web security hygiene";
homepage = "https://github.com/dnsight/dnsight";
changelog = "https://github.com/dnsight/dnsight/releases/tag/v${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "dnsight";
};
})
+2
View File
@@ -4535,6 +4535,8 @@ self: super: with self; {
dns-lexicon = callPackage ../development/python-modules/dns-lexicon { };
dnsight = callPackage ../development/python-modules/dnsight { };
dnslib = callPackage ../development/python-modules/dnslib { };
dnspython = callPackage ../development/python-modules/dnspython { };