Files
nixpkgs/pkgs/development/python-modules/django-otp-webauthn/default.nix
Martin Weinelt 68c849c7e0 python3Packages.django-otp-webauthn: 0.6.0 -> 0.8.0
https://github.com/Stormbase/django-otp-webauthn/blob/v0.8.0/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
2026-02-01 16:43:08 +01:00

45 lines
915 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
django,
django-otp,
djangorestframework,
webauthn,
}:
buildPythonPackage rec {
pname = "django-otp-webauthn";
version = "0.8.0";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "django_otp_webauthn";
hash = "sha256-GMkKL+U7CPfw3WaSlsnoi0VmEPF/wbb86phfl01NM6I=";
};
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 ];
};
}