python3Packages.pytenable: 1.4.2 -> 1.4.3

This commit is contained in:
Fabian Affolter 2021-12-29 23:54:45 +01:00
parent 36032dfafc
commit 8ddf066c1f

View file

@ -9,6 +9,7 @@
, pytestCheckHook , pytestCheckHook
, python-box , python-box
, python-dateutil , python-dateutil
, pythonOlder
, requests , requests
, requests-pkcs12 , requests-pkcs12
, responses , responses
@ -19,13 +20,16 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytenable"; pname = "pytenable";
version = "1.4.2"; version = "1.4.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "tenable"; owner = "tenable";
repo = "pyTenable"; repo = "pyTenable";
rev = version; rev = version;
sha256 = "sha256-qljoJ+nYFVS5VHr/M4mITtO9Czuyb4HLzVjhprhyJIs="; hash = "sha256-p9d3wZkOMhNQWJN6tCNUlW15A3irU8QN/nm7PLGTE/M=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -59,7 +63,9 @@ buildPythonPackage rec {
"test_uploads_docker_push_cs_tag_typeerror" "test_uploads_docker_push_cs_tag_typeerror"
]; ];
pythonImportsCheck = [ "tenable" ]; pythonImportsCheck = [
"tenable"
];
meta = with lib; { meta = with lib; {
description = "Python library for the Tenable.io and TenableSC API"; description = "Python library for the Tenable.io and TenableSC API";