My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pytenable/default.nix

76 lines
1.4 KiB

{ 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.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tenable";
repo = "pyTenable";
rev = version;
hash = "sha256-0isXHh0b2l8Br4XXR1y8A+zu8vkJjEsJ6faNNEx12lM=";
};
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 ];
};
}