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

24 lines
644 B
Nix
Raw Normal View History

2018-06-28 14:08:48 +00:00
{ lib, buildPythonPackage, fetchPypi, six, cryptography }:
buildPythonPackage rec {
pname = "fido2";
version = "0.4.0";
2018-06-28 14:08:48 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "12245b16czsgq4a251jqlk5qs3sldlcryfcganswzk2lbgplmn7q";
2018-06-28 14:08:48 +00:00
};
# The pypi package does not include tests
# Check https://github.com/Yubico/python-fido2/pull/8
doCheck = false;
propagatedBuildInputs = [ six cryptography ];
meta = with lib; {
description = "Provides library functionality for FIDO 2.0, including communication with a device over USB.";
homepage = https://github.com/Yubico/python-fido2;
license = licenses.mpl20;
};
}