Merge pull request #74816 from prusnak/python-fido2

python3Packages.fido2: 0.7.3 -> 0.8.1
This commit is contained in:
Dmitry Kalinkin 2019-12-02 11:05:10 -05:00 committed by GitHub
commit e678aadb04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,19 @@
{ lib, buildPythonPackage, fetchPypi { lib
, six, cryptography , buildPythonPackage
, mock, pyfakefs , fetchPypi
, six
, cryptography
, mock
, pyfakefs
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "fido2"; pname = "fido2";
version = "0.7.3"; version = "0.8.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "8b592ec0e51348f29636706fe3266423a0e41c35c9df63a259a91488450c1285"; sha256 = "1hzprnd407g2xh9kyv8j8pq949hwr1snmg3fp65pqfbghzv6i424";
}; };
propagatedBuildInputs = [ six cryptography ]; propagatedBuildInputs = [ six cryptography ];
@ -18,7 +22,8 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Provides library functionality for FIDO 2.0, including communication with a device over USB."; description = "Provides library functionality for FIDO 2.0, including communication with a device over USB.";
homepage = https://github.com/Yubico/python-fido2; homepage = "https://github.com/Yubico/python-fido2";
license = licenses.mpl20; license = licenses.bsd2;
maintainers = with maintainers; [ prusnak ];
}; };
} }