Merge pull request #112283 from dotlambda/pyotp-2.6.0

python3Packages.pyotp: 2.5.1 -> 2.6.0
This commit is contained in:
Martin Weinelt 2021-02-07 17:38:09 +01:00 committed by GitHub
commit ca1e41de74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,19 +2,19 @@
buildPythonPackage rec {
pname = "pyotp";
version = "2.5.1";
version = "2.6.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "2a54d393aff3a244b566d78d597c9cb42e91b3b12f3169cec89d9dfff1c9c5bc";
sha256 = "d28ddfd40e0c1b6a6b9da961c7d47a10261fb58f378cb00f05ce88b26df9c432";
};
pythonImportsCheck = [ "pyotp" ];
meta = with lib; {
description = "Python One Time Password Library";
homepage = "https://github.com/pyotp/pyotp";
homepage = "https://github.com/pyauth/pyotp";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};