nixpkgs-suyu/pkgs/development/python-modules/fido2/default.nix

42 lines
917 B
Nix
Raw Normal View History

2019-12-02 05:48:26 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, six
, cryptography
, mock
, pyfakefs
2019-01-10 18:03:55 +01:00
}:
2018-06-28 16:08:48 +02:00
buildPythonPackage rec {
pname = "fido2";
2021-03-24 10:28:12 +01:00
version = "0.9.1";
2018-06-28 16:08:48 +02:00
src = fetchPypi {
inherit pname version;
2021-03-24 10:28:12 +01:00
sha256 = "8680ee25238e2307596eb3900a0f8c0d9cc91189146ed8039544f1a3a69dfe6e";
2018-06-28 16:08:48 +02:00
};
propagatedBuildInputs = [ six cryptography ];
2019-01-10 18:03:55 +01:00
checkInputs = [ mock pyfakefs ];
2021-04-07 13:21:57 +02:00
# Testing with `python setup.py test` doesn't work:
# https://github.com/Yubico/python-fido2/issues/108#issuecomment-763513576
checkPhase = ''
runHook preCheck
python -m unittest discover -v
runHook postCheck
'';
2021-02-16 23:09:51 +01:00
pythonImportsCheck = [ "fido2" ];
2018-06-28 16:08:48 +02:00
meta = with lib; {
description = "Provides library functionality for FIDO 2.0, including communication with a device over USB.";
2019-12-02 05:48:26 +01:00
homepage = "https://github.com/Yubico/python-fido2";
license = licenses.bsd2;
maintainers = with maintainers; [ prusnak ];
2018-06-28 16:08:48 +02:00
};
}