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

42 lines
917 B
Nix
Raw Normal View History

2019-12-02 04:48:26 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, six
, cryptography
, mock
, pyfakefs
2019-01-10 17:03:55 +00:00
}:
2018-06-28 14:08:48 +00:00
buildPythonPackage rec {
pname = "fido2";
2021-03-24 09:28:12 +00:00
version = "0.9.1";
2018-06-28 14:08:48 +00:00
src = fetchPypi {
inherit pname version;
2021-03-24 09:28:12 +00:00
sha256 = "8680ee25238e2307596eb3900a0f8c0d9cc91189146ed8039544f1a3a69dfe6e";
2018-06-28 14:08:48 +00:00
};
propagatedBuildInputs = [ six cryptography ];
2019-01-10 17:03:55 +00:00
checkInputs = [ mock pyfakefs ];
2021-04-07 11:21:57 +00: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 22:09:51 +00:00
pythonImportsCheck = [ "fido2" ];
2018-06-28 14:08:48 +00:00
meta = with lib; {
description = "Provides library functionality for FIDO 2.0, including communication with a device over USB.";
2019-12-02 04:48:26 +00:00
homepage = "https://github.com/Yubico/python-fido2";
license = licenses.bsd2;
maintainers = with maintainers; [ prusnak ];
2018-06-28 14:08:48 +00:00
};
}