2025-01-15 21:16:21 +01:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
2025-01-18 02:12:30 +01:00
|
|
|
django,
|
|
|
|
netaddr,
|
2025-01-15 21:16:21 +01:00
|
|
|
netbox,
|
2025-01-18 02:12:30 +01:00
|
|
|
setuptools,
|
2025-01-15 21:16:21 +01:00
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "netbox-interface-synchronization";
|
2025-02-27 03:37:55 +00:00
|
|
|
version = "4.1.6";
|
2025-01-15 21:16:21 +01:00
|
|
|
pyproject = true;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NetTech2001";
|
|
|
|
repo = "netbox-interface-synchronization";
|
|
|
|
tag = version;
|
2025-02-27 03:37:55 +00:00
|
|
|
hash = "sha256-scsNigSqKWeauAyIDxDzwbgtl3rM5CGBCCmVj/98w84=";
|
2025-01-15 21:16:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
|
2025-01-18 02:12:30 +01:00
|
|
|
dependencies = [
|
|
|
|
django
|
|
|
|
netaddr
|
|
|
|
];
|
|
|
|
|
2025-01-15 21:16:21 +01:00
|
|
|
# netbox is required for the pythonImportsCheck; plugin does not provide unit tests
|
|
|
|
nativeCheckInputs = [ netbox ];
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
export PYTHONPATH=${netbox}/opt/netbox/netbox:$PYTHONPATH
|
|
|
|
'';
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "netbox_interface_synchronization" ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Netbox plugin to compare and synchronize interfaces between devices and device types";
|
|
|
|
homepage = "https://github.com/NetTech2001/netbox-interface-synchronization";
|
|
|
|
changelog = "https://github.com/NetTech2001/netbox-interface-synchronization/releases/tag/${src.tag}";
|
|
|
|
license = lib.licenses.gpl3Only;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = with lib.maintainers; [ felbinger ];
|
|
|
|
};
|
|
|
|
}
|