netbox_4_6.plugins.netbox-dns: init at 1.5.10

This commit is contained in:
Jeffrey C. Ollie
2026-07-20 11:24:15 -05:00
parent 44c3bdce75
commit 6da09c48a4

View File

@@ -0,0 +1,40 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
dnspython,
}:
buildPythonPackage (finalAttrs: {
__structuredAttrs = true;
pname = "netbox-plugin-dns";
version = "1.5.10";
pyproject = true;
src = fetchFromGitHub {
owner = "peteeckel";
repo = "netbox-plugin-dns";
tag = finalAttrs.version;
hash = "sha256-wxTW/qiwp+1CXUeCDJnllEW2oCTjlFVUot7JfWPooaw=";
};
build-system = [ setuptools ];
dependencies = [
dnspython
];
# pythonImportsCheck fails due to improperly configured django app
passthru.pluginName = "netbox_dns";
meta = {
description = "Netbox plugin for managing DNS data";
homepage = "https://github.com/peteeckel/netbox-plugin-dns";
changelog = "https://github.com/peteeckel/netbox-plugin-dns/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ felbinger ];
};
})