nixpkgs/pkgs/development/python-modules/fido2/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

35 lines
744 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, six
, cryptography
, mock
, pyfakefs
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "fido2";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-K0tOYgwhAEQsIGeODpUa1tHvs7pcqOu3IMTI1UMpNnQ=";
};
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 ];
};
}