d4a372fdff
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-fido2/versions
25 lines
578 B
Nix
25 lines
578 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, six, cryptography
|
|
, mock, pyfakefs
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fido2";
|
|
version = "0.7.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "11wdcjymw8y6wxgp29gbhdxff3lpc5yp5fcqnr5vnj88g192ic27";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six cryptography ];
|
|
|
|
checkInputs = [ mock pyfakefs ];
|
|
|
|
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.mpl20;
|
|
};
|
|
}
|