83627f9931
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
84 lines
1.7 KiB
Nix
84 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
defusedxml,
|
|
fetchFromGitHub,
|
|
marshmallow,
|
|
pytest-datafiles,
|
|
pytest-vcr,
|
|
pytestCheckHook,
|
|
python-box,
|
|
python-dateutil,
|
|
pythonOlder,
|
|
requests,
|
|
requests-pkcs12,
|
|
requests-toolbelt,
|
|
responses,
|
|
restfly,
|
|
semver,
|
|
setuptools,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytenable";
|
|
version = "1.5.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tenable";
|
|
repo = "pyTenable";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-uLZ1TQx5awHOOF+IR3aWTwwYTd71O/V+EHaDrb1LAXU=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
defusedxml
|
|
marshmallow
|
|
python-box
|
|
python-dateutil
|
|
requests
|
|
requests-toolbelt
|
|
restfly
|
|
semver
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-datafiles
|
|
pytest-vcr
|
|
pytestCheckHook
|
|
requests-pkcs12
|
|
responses
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Disable tests that requires network access
|
|
"tests/io/"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Disable tests that requires a Docker container
|
|
"test_uploads_docker_push_name_typeerror"
|
|
"test_uploads_docker_push_tag_typeerror"
|
|
"test_uploads_docker_push_cs_name_typeerror"
|
|
"test_uploads_docker_push_cs_tag_typeerror"
|
|
# Test requires network access
|
|
"test_assets_list_vcr"
|
|
"test_events_list_vcr"
|
|
];
|
|
|
|
pythonImportsCheck = [ "tenable" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for the Tenable.io and TenableSC API";
|
|
homepage = "https://github.com/tenable/pyTenable";
|
|
changelog = "https://github.com/tenable/pyTenable/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|