mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
python3Packages.fido2: 0.7.3 -> 0.8.1
This commit is contained in:
parent
b59adfc731
commit
c6e4e06996
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user