nixpkgs/pkgs/development/python-modules/fido2/default.nix
2023-04-26 09:52:07 +02:00

39 lines
822 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
, six
, cryptography
, mock
, pyfakefs
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "fido2";
version = "1.1.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-XcSVyoxZwcM3ODtLjDFNRrktXG/GUOcZhMbX+VQHn8M=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [ six cryptography ];
nativeCheckInputs = [ unittestCheckHook mock pyfakefs ];
unittestFlagsArray = [ "-v" ];
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";
license = licenses.bsd2;
maintainers = with maintainers; [ prusnak ];
};
}