Unverified Commit e3220320 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

python3Packages.fido2: 1.1.0 -> 1.1.1

parent 15554e75
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
{ 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 ];