77 lines
1.4 KiB
Nix
77 lines
1.4 KiB
Nix
{ lib
|
|
, appdirs
|
|
, buildPythonPackage
|
|
, defusedxml
|
|
, fetchFromGitHub
|
|
, marshmallow
|
|
, pytest-datafiles
|
|
, pytest-vcr
|
|
, pytestCheckHook
|
|
, python-box
|
|
, python-dateutil
|
|
, pythonOlder
|
|
, requests
|
|
, requests-pkcs12
|
|
, responses
|
|
, restfly
|
|
, semver
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytenable";
|
|
version = "1.4.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tenable";
|
|
repo = "pyTenable";
|
|
rev = version;
|
|
hash = "sha256-p9d3wZkOMhNQWJN6tCNUlW15A3irU8QN/nm7PLGTE/M=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
semver
|
|
];
|
|
|
|
buildInputs = [
|
|
appdirs
|
|
defusedxml
|
|
marshmallow
|
|
python-box
|
|
python-dateutil
|
|
requests
|
|
requests-pkcs12
|
|
restfly
|
|
typing-extensions
|
|
];
|
|
|
|
checkInputs = [
|
|
responses
|
|
pytest-datafiles
|
|
pytest-vcr
|
|
pytestCheckHook
|
|
];
|
|
|
|
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"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"tenable"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for the Tenable.io and TenableSC API";
|
|
homepage = "https://github.com/tenable/pyTenable";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|