python3Packages.pytenable: init at 1.2.8

This commit is contained in:
Fabian Affolter 2021-03-30 23:03:24 +02:00 committed by Jonathan Ringer
parent 568d8e5534
commit 40a8901d20
2 changed files with 68 additions and 0 deletions

View file

@ -0,0 +1,66 @@
{ lib
, buildPythonPackage
, defusedxml
, fetchFromGitHub
, marshmallow
, pytest-datafiles
, pytest-vcr
, pytestCheckHook
, python-box
, python-dateutil
, requests
, requests-pkcs12
, responses
, restfly
, semver
}:
buildPythonPackage rec {
pname = "pytenable";
version = "1.2.8";
src = fetchFromGitHub {
owner = "tenable";
repo = "pyTenable";
rev = version;
sha256 = "12x0w1c4blm73ixv07w90jkydl7d8dx5l27ih9vc1yv9v2zzb53k";
};
propagatedBuildInputs = [
semver
];
buildInputs = [
defusedxml
marshmallow
python-box
python-dateutil
requests
requests-pkcs12
restfly
];
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 ];
};
}

View file

@ -6390,6 +6390,8 @@ in {
pyte = callPackage ../development/python-modules/pyte { };
pytenable = callPackage ../development/python-modules/pytenable { };
pytelegrambotapi = callPackage ../development/python-modules/pyTelegramBotAPI { };
pytesseract = callPackage ../development/python-modules/pytesseract { };