python3Packages.fido2: 1.1.0 -> 1.1.1

https://github.com/Yubico/python-fido2/releases/tag/1.1.1
We mainly needed the part increasing version constraint.
https://hydra.nixos.org/build/216729240/nixlog/4/tail
This commit is contained in:
Vladimír Čunát 2023-04-26 09:50:48 +02:00
parent 15554e75ad
commit e3220320ca
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
, six
, cryptography
, mock
@ -10,13 +11,16 @@
buildPythonPackage rec {
pname = "fido2";
version = "1.1.0";
version = "1.1.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-K0tOYgwhAEQsIGeODpUa1tHvs7pcqOu3IMTI1UMpNnQ=";
hash = "sha256-XcSVyoxZwcM3ODtLjDFNRrktXG/GUOcZhMbX+VQHn8M=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [ six cryptography ];
nativeCheckInputs = [ unittestCheckHook mock pyfakefs ];