diff --git a/pkgs/development/python-modules/webauthn/default.nix b/pkgs/development/python-modules/webauthn/default.nix new file mode 100644 index 000000000000..757d59173851 --- /dev/null +++ b/pkgs/development/python-modules/webauthn/default.nix @@ -0,0 +1,43 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, asn1crypto +, cbor2 +, pythonOlder +, pydantic +, pyopenssl +, pytestCheckHook +}: + +buildPythonPackage rec { + pname = "webauthn"; + version = "1.5.2"; + disabled = pythonOlder "3"; + + src = fetchFromGitHub { + owner = "duo-labs"; + repo = "py_webauthn"; + rev = "v${version}"; + sha256 = "sha256-sjl65vx1VthVX6ED3lXXAcn2D5WzzGAINKBjCc10rcs="; + }; + + propagatedBuildInputs = [ + asn1crypto + cbor2 + pydantic + pyopenssl + ]; + + checkInputs = [ + pytestCheckHook + ]; + + pythonImportsCheck = [ "webauthn" ]; + + meta = with lib; { + homepage = "https://github.com/duo-labs/py_webauthn"; + description = "Implementation of the WebAuthn API"; + license = licenses.bsd3; + maintainers = with maintainers; [ SuperSandro2000 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8636faaa0a74..279521bd398e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11021,6 +11021,8 @@ in { webassets = callPackage ../development/python-modules/webassets { }; + webauthn = callPackage ../development/python-modules/webauthn { }; + web = callPackage ../development/python-modules/web { }; web-cache = callPackage ../development/python-modules/web-cache { };