Files
nixpkgs/pkgs/development/python-modules/webauthn/default.nix
2025-02-06 03:42:44 +00:00

49 lines
940 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
asn1crypto,
cbor2,
cryptography,
pythonOlder,
pyopenssl,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "webauthn";
version = "2.5.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "duo-labs";
repo = "py_webauthn";
tag = "v${version}";
hash = "sha256-QXaZeR8PC3fW3KjmVKsupnftznSxLw8b1HvllOAiouk=";
};
build-system = [ setuptools ];
propagatedBuildInputs = [
asn1crypto
cbor2
cryptography
pyopenssl
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "webauthn" ];
meta = with lib; {
description = "Implementation of the WebAuthn API";
homepage = "https://github.com/duo-labs/py_webauthn";
changelog = "https://github.com/duo-labs/py_webauthn/blob/v${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = [ ];
};
}