python312Packages.netbox-plugin-dns: init at 1.1.7 (#374139)

This commit is contained in:
Sandro
2025-01-17 21:01:57 +01:00
committed by GitHub
2 changed files with 38 additions and 0 deletions
@@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
dnspython,
}:
buildPythonPackage rec {
pname = "netbox-plugin-dns";
version = "1.1.7";
pyproject = true;
src = fetchFromGitHub {
owner = "peteeckel";
repo = "netbox-plugin-dns";
tag = version;
hash = "sha256-wrVTsVKjGPJCIoSo6uuWtorJBjn4Kh2kYkBXxM88kCo";
};
build-system = [ setuptools ];
dependencies = [
dnspython
];
# pythonImportsCheck fails due to improperly configured django app
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/${src.tag}";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ felbinger ];
};
}
+2
View File
@@ -9160,6 +9160,8 @@ self: super: with self; {
netbox-bgp = callPackage ../development/python-modules/netbox-bgp { };
netbox-dns = callPackage ../development/python-modules/netbox-dns { };
netbox-documents = callPackage ../development/python-modules/netbox-documents { };
netbox-interface-synchronization = callPackage ../development/python-modules/netbox-interface-synchronization { };