Skip to content

Commit

Permalink
[Backport release-24.11] python312Packages.napalm-ros: init at 1.2.6 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukium authored Jan 19, 2025
2 parents 2a8c0f0 + ccc35b7 commit 55e18b9
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
49 changes: 49 additions & 0 deletions pkgs/development/python-modules/napalm/ros.nix
Original file line number Diff line number Diff line change
@@ -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 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8927,6 +8927,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;
};
Expand Down

0 comments on commit 55e18b9

Please sign in to comment.