nixpkgs/pkgs/development/python-modules/qualysclient/default.nix
2023-03-13 08:35:46 +01:00

57 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, certifi
, charset-normalizer
, fetchFromGitHub
, idna
, lxml
, pytest-mock
, pytestCheckHook
, pythonOlder
, requests
, responses
, urllib3
}:
buildPythonPackage rec {
pname = "qualysclient";
version = "0.0.4.8.3";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "woodtechie1428";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-+SZICysgSC4XeXC9CCl6Yxb47V9c1eMp7KcpH8J7kK0=";
};
propagatedBuildInputs = [
certifi
charset-normalizer
idna
lxml
requests
urllib3
];
nativeCheckInputs = [
pytest-mock
pytestCheckHook
responses
];
pythonImportsCheck = [
"qualysclient"
];
meta = with lib; {
description = "Python SDK for interacting with the Qualys API";
homepage = "https://qualysclient.readthedocs.io/";
changelog = "https://github.com/woodtechie1428/qualysclient/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}