nixpkgs/pkgs/development/python-modules/pytenable/default.nix
2022-03-10 07:41:59 +00:00

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.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tenable";
repo = "pyTenable";
rev = version;
hash = "sha256-qp+e40z24RIOV5RfSw/nI/y1Z3972nCLN8DgQyLbDOc=";
};
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 ];
};
}