python312Packages.napalm-ros: init at 1.2.6 (#374546)

This commit is contained in:
Sandro
2025-01-17 21:03:45 +01:00
committed by GitHub
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
napalm,
librouteros,
pytestCheckHook,
pythonAtLeast,
}:
buildPythonPackage rec {
pname = "napalm-ros";
version = "1.2.6";
pyproject = true;
disabled = pythonAtLeast "3.13";
src = fetchFromGitHub {
owner = "napalm-automation-community";
repo = "napalm-ros";
tag = version;
hash = "sha256-Fv11Blx44vZZ8NuhQQIFpDr+dH2gDJtQP7b0kAk3U/s=";
};
build-system = [ setuptools ];
dependencies = [ librouteros ];
nativeCheckInputs = [
napalm
pytestCheckHook
];
disabledTests = [
# AssertionError: Some methods vary.
"test_method_signatures"
];
pythonImportsCheck = [ "napalm_ros" ];
meta = {
description = "MikroTik RouterOS NAPALM driver";
homepage = "https://github.com/napalm-automation-community/napalm-ros";
changelog = "https://github.com/napalm-automation-community/napalm-ros/releases/tag/${src.tag}";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ felbinger ];
};
}
+2
View File
@@ -9058,6 +9058,8 @@ self: super: with self; {
napalm-hp-procurve = callPackage ../development/python-modules/napalm/hp-procurve.nix { };
napalm-ros = callPackage ../development/python-modules/napalm/ros.nix { };
napari = callPackage ../development/python-modules/napari {
inherit (pkgs.libsForQt5) mkDerivationWith wrapQtAppsHook;
};