Skip to content

Commit

Permalink
python312Packages.napalm-ros: init at 1.2.6 (#374546)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Jan 17, 2025
2 parents 2218eb7 + 328fdd6 commit 005b37d
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 @@ -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;
};
Expand Down

0 comments on commit 005b37d

Please sign in to comment.