depot/third_party/nixpkgs/pkgs/development/python-modules/fortiosapi/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

48 lines
904 B
Nix

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