2025-08-09 20:33:42 +00:00

102 lines
1.9 KiB
Nix

{
lib,
buildPythonPackage,
cryptography,
defusedxml,
fetchFromGitHub,
gql,
graphql-core,
marshmallow,
pydantic-extra-types,
pydantic,
pytest-cov-stub,
pytest-datafiles,
pytest-vcr,
pytestCheckHook,
python-box,
python-dateutil,
pythonOlder,
requests-pkcs12,
requests-toolbelt,
requests,
responses,
restfly,
semver,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "pytenable";
version = "1.8.3";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "tenable";
repo = "pyTenable";
tag = version;
hash = "sha256-91V2R29M/+kiosfkl5t6Y8qT/E041Wl1jhXCw3eQ7us=";
};
pythonRelaxDeps = [
"cryptography"
"defusedxml"
];
build-system = [ setuptools ];
dependencies = [
cryptography
defusedxml
gql
graphql-core
marshmallow
pydantic
pydantic-extra-types
python-box
python-dateutil
requests
requests-toolbelt
restfly
semver
typing-extensions
];
nativeCheckInputs = [
pytest-cov-stub
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/${src.tag}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}