python310Packages.duo-client: 4.5.0 -> 4.6.1 (#217194)
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
parent
4cfe784858
commit
8aed016f9c
1 changed files with 7 additions and 4 deletions
|
@ -11,13 +11,13 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "duo-client";
|
pname = "duo-client";
|
||||||
version = "4.5.0";
|
version = "4.6.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "duosecurity";
|
owner = "duosecurity";
|
||||||
repo = "duo_client_python";
|
repo = "duo_client_python";
|
||||||
rev = version;
|
rev = "refs/tags/${version}";
|
||||||
sha256 = "sha256-9ADFtCrSJ4Y2QQY5YC/BMvoVZs2vaYHkhIM/rBlZm4I=";
|
hash = "sha256-1xasV9iLbSODy8q1wEVDvELdmSQwj3qVCXOE94lyjFU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -38,11 +38,14 @@ buildPythonPackage rec {
|
||||||
pytz
|
pytz
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "duo_client" ];
|
pythonImportsCheck = [
|
||||||
|
"duo_client"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python library for interacting with the Duo Auth, Admin, and Accounts APIs";
|
description = "Python library for interacting with the Duo Auth, Admin, and Accounts APIs";
|
||||||
homepage = "https://github.com/duosecurity/duo_client_python";
|
homepage = "https://github.com/duosecurity/duo_client_python";
|
||||||
|
changelog = "https://github.com/duosecurity/duo_client_python/releases/tag/${version}";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue