2025-05-20 11:10:15 +02:00

37 lines
745 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
hatchling,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "otpauth";
version = "2.2.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Fpp629cV/KaH9qZtAszb78Ip+0n4pjS5WNKG+QgTTVk=";
};
build-system = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "otpauth" ];
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 ];
};
}