Files
nixpkgs/pkgs/development/python-modules/fido2/default.nix
panicgh 2e11500ee7 python3Packages.fido2: skip device tests (#431308)
By default, unit tests include hardware authenticator device tests. They
hang nixpkgs builds for a long time waiting for a touch of the
authenticator device. Skip such tests to avoid waiting.
2025-08-09 19:04:54 +02:00

48 lines
974 B
Nix

{
lib,
buildPythonPackage,
cryptography,
fetchPypi,
poetry-core,
pyscard,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "fido2";
version = "2.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-MGHNBec7Og72r8O4A9V8gmqi1qlzLRar1ydzYfWOeWQ=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [ "cryptography" ];
dependencies = [ cryptography ];
optional-dependencies = {
pcsc = [ pyscard ];
};
nativeCheckInputs = [ pytestCheckHook ];
pytestFlags = [
"-v"
"--no-device"
];
pythonImportsCheck = [ "fido2" ];
meta = with lib; {
description = "Provides library functionality for FIDO 2.0, including communication with a device over USB";
homepage = "https://github.com/Yubico/python-fido2";
changelog = "https://github.com/Yubico/python-fido2/releases/tag/${version}";
license = licenses.bsd2;
maintainers = with maintainers; [ prusnak ];
};
}