depot/third_party/nixpkgs/pkgs/development/python-modules/duo-client/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

65 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
freezegun,
mock,
pytestCheckHook,
pythonOlder,
pytz,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "duo-client";
version = "5.3.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "duosecurity";
repo = "duo_client_python";
rev = "refs/tags/${version}";
hash = "sha256-7cifxNSBHbX7QZ52Sy1hm5xzZYcLZOkloT6q9P7TO6A=";
};
postPatch = ''
substituteInPlace requirements-dev.txt \
--replace-fail "dlint" "" \
--replace-fail "flake8" ""
'';
build-system = [ setuptools ];
dependencies = [ six ];
nativeCheckInputs = [
freezegun
mock
pytestCheckHook
pytz
];
pythonImportsCheck = [ "duo_client" ];
disabledTests = [
# Tests require network access
"test_server_hostname"
"test_server_hostname_with_port"
"test_get_billing_edition"
"test_get_telephony_credits"
"test_set_business_billing_edition"
"test_set_enterprise_billing_edition"
"test_set_telephony_credits"
];
meta = with lib; {
description = "Python library for interacting with the Duo Auth, Admin, and Accounts APIs";
homepage = "https://github.com/duosecurity/duo_client_python";
changelog = "https://github.com/duosecurity/duo_client_python/releases/tag/${version}";
license = licenses.bsd3;
maintainers = [ ];
};
}