nixpkgs/pkgs/development/python-modules/junos-eznc/default.nix
2024-04-12 07:34:24 +00:00

91 lines
1.6 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, jinja2
, lxml
, mock
, ncclient
, netaddr
, nose2
, ntc-templates
, paramiko
, pyparsing
, pyserial
, pythonOlder
, pyyaml
, scp
, setuptools
, pytestCheckHook
, six
, transitions
, yamlordereddictloader
}:
buildPythonPackage rec {
pname = "junos-eznc";
version = "2.7.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Juniper";
repo = "py-junos-eznc";
rev = "refs/tags/${version}";
hash = "sha256-aoi+in5A8qSdQNY3V4S4wBBfPchR1an7G6GQHDhgxpQ=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
jinja2
lxml
ncclient
netaddr
ntc-templates
paramiko
pyparsing
pyserial
pyyaml
scp
six
transitions
yamlordereddictloader
];
nativeCheckInputs = [
mock
nose2
pytestCheckHook
];
pytestFlagsArray = [
"tests/unit"
];
disabledTests = [
# jnpr.junos.exception.FactLoopError: A loop was detected while gathering the...
"TestPersonality"
"TestGetSoftwareInformation"
"TestIfdStyle"
# KeyError: 'mac'
"test_textfsm_table_mutli_key"
# AssertionError: None != 'juniper.net'
"test_domain_fact_from_config"
];
pythonImportsCheck = [
"jnpr.junos"
];
meta = with lib; {
description = "Junos 'EZ' automation for non-programmers";
homepage = "https://github.com/Juniper/py-junos-eznc";
changelog = "https://github.com/Juniper/py-junos-eznc/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ xnaveira ];
};
}