python3Packages.otpauth: init at 2.1.1

This commit is contained in:
Kerstin Humm
2025-01-29 10:54:36 +01:00
committed by Valentin Gagarin
parent bf580ab213
commit 57677a95ed
2 changed files with 38 additions and 0 deletions
@@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "otpauth";
version = "2.1.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-4J7WOgGzWs14t7sPmB/c29HZ2cAb4aPg1wJMZdDnTio=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ pname ];
meta = with lib; {
description = "Implements one time password of HOTP/TOTP";
homepage = "https://otp.authlib.org/";
changelog = "https://github.com/authlib/otpauth/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ erictapen ];
};
}
+2
View File
@@ -9931,6 +9931,8 @@ self: super: with self; {
osxphotos = callPackage ../development/python-modules/osxphotos { };
otpauth = callPackage ../development/python-modules/otpauth { };
ots-python = callPackage ../development/python-modules/ots-python { };
outcome = callPackage ../development/python-modules/outcome { };