44 lines
917 B
Nix
44 lines
917 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
hatchling,
|
|
django,
|
|
django-otp,
|
|
djangorestframework,
|
|
webauthn,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-otp-webauthn";
|
|
version = "0.4.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "django_otp_webauthn";
|
|
hash = "sha256-BXwIjQjynTjFK+bNML5i35qxQ7TJeb4Xc+duS6Y+5Fk=";
|
|
};
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
django
|
|
django-otp
|
|
djangorestframework
|
|
webauthn
|
|
];
|
|
|
|
# Tests are on the roadmap, but not yet implemented
|
|
|
|
pythonImportsCheck = [ "django_otp_webauthn" ];
|
|
|
|
meta = with lib; {
|
|
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 = licenses.bsd3;
|
|
maintainers = with maintainers; [ erictapen ];
|
|
};
|
|
|
|
}
|