nixpkgs/pkgs/development/python-modules/duo-client/default.nix
2024-03-26 09:00:12 +00:00

71 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 "dlint" "" \
--replace "flake8" ""
'';
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
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 = with maintainers; [ ];
};
}