nixpkgs/pkgs/development/python-modules/pytenable/default.nix

86 lines
1.7 KiB
Nix

{ lib
, buildPythonPackage
, defusedxml
, fetchFromGitHub
, marshmallow
, pytest-datafiles
, pytest-vcr
, pytestCheckHook
, python-box
, python-dateutil
, pythonOlder
, requests
, requests-pkcs12
, responses
, restfly
, semver
, setuptools
, typing-extensions
}:
buildPythonPackage rec {
pname = "pytenable";
version = "1.4.22";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tenable";
repo = "pyTenable";
rev = "refs/tags/${version}";
hash = "sha256-acMafLlO0yGEnW+0XeBWUpDWvOPFAB4RK/XyAb2JbPw=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
defusedxml
marshmallow
python-box
python-dateutil
requests
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 ];
};
}