Files
2026-07-15 14:04:39 -04:00

46 lines
841 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
oyaml,
packaging,
paramiko,
pexpect,
requests,
six,
}:
buildPythonPackage rec {
pname = "fortiosapi";
version = "1.0.5";
format = "setuptools";
src = fetchFromGitHub {
owner = "fortinet-solutions-cse";
repo = "fortiosapi";
tag = "v${version}";
hash = "sha256-M71vleEhRYnlf+RSGT1GbCy5NEZaG0hWmJo01n9s6Rg=";
};
propagatedBuildInputs = [
pexpect
requests
paramiko
packaging
oyaml
six
];
# Tests require a local VM
doCheck = false;
pythonImportsCheck = [ "fortiosapi" ];
meta = {
description = "Python module to work with Fortigate/Fortios devices";
homepage = "https://github.com/fortinet-solutions-cse/fortiosapi";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}