Files
Fabian Affolter a06546d85d python3Packages.django-otp-webauthn: 0.8.0 -> 0.10.0
https://github.com/Stormbase/django-otp-webauthn/blob/v0.10.0/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:20 +02:00

45 lines
916 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
django,
django-otp,
djangorestframework,
webauthn,
}:
buildPythonPackage rec {
pname = "django-otp-webauthn";
version = "0.10.0";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "django_otp_webauthn";
hash = "sha256-dIhrzgjRcmKvNloiy5/5ZJhEqfe51gtIqqX7i0AIuqs=";
};
build-system = [ hatchling ];
dependencies = [
django
django-otp
djangorestframework
webauthn
];
# Tests are on the roadmap, but not yet implemented
pythonImportsCheck = [ "django_otp_webauthn" ];
meta = {
description = "Passkey support for Django";
homepage = "https://github.com/Stormbase/django-otp-webauthn";
changelog = "https://github.com/Stormbase/django-otp-webauthn/blob/v${version}/CHANGELOG.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ erictapen ];
};
}