Skip to content

Commit

Permalink
python3Packages.fido2: 1.1.0 -> 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Apr 26, 2023
1 parent 15554e7 commit e322032
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/development/python-modules/fido2/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
, six
, cryptography
, mock
Expand All @@ -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 ];
Expand Down

1 comment on commit e322032

@vcunat
Copy link
Member Author

@vcunat vcunat commented on e322032 Apr 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should be OK now, but /cc maintainer @prusnak

Please sign in to comment.