python310Packages.duo-client: 4.5.0 -> 4.6.1 (#217194)

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
R. RyanTM 2023-02-19 15:11:34 -08:00 committed by GitHub
parent 4cfe784858
commit 8aed016f9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,13 +11,13 @@
buildPythonPackage rec {
pname = "duo-client";
version = "4.5.0";
version = "4.6.1";
src = fetchFromGitHub {
owner = "duosecurity";
repo = "duo_client_python";
rev = version;
sha256 = "sha256-9ADFtCrSJ4Y2QQY5YC/BMvoVZs2vaYHkhIM/rBlZm4I=";
rev = "refs/tags/${version}";
hash = "sha256-1xasV9iLbSODy8q1wEVDvELdmSQwj3qVCXOE94lyjFU=";
};
postPatch = ''
@ -38,11 +38,14 @@ buildPythonPackage rec {
pytz
];
pythonImportsCheck = [ "duo_client" ];
pythonImportsCheck = [
"duo_client"
];
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; [ SuperSandro2000 ];
};