Merge pull request #146893 from fabaff/bump-oath

python3Packages.oath: 1.4.3 -> 1.4.4
This commit is contained in:
Fabian Affolter 2021-11-21 18:14:55 +01:00 committed by GitHub
commit 54962ddabc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "oath";
version = "1.4.3";
version = "1.4.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1xqgcqgx6aa0j21hwsdb3aqpqhviwj756bcqjjjcm1h1aij11p6m";
sha256 = "sha256-vWsg0g8sTj9TUj7pACEdynWu7KcvT1qf2NyswXX+HAs=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"oath"
];
meta = with lib; {
description = "Python implementation of the three main OATH specifications: HOTP, TOTP and OCRA";