nixpkgs/pkgs/development/python-modules/fido2/default.nix
R. RyanTM fe92e5fb93 python37Packages.fido2: 0.4.0 -> 0.5.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-fido2/versions
2019-01-02 16:57:07 -05:00

24 lines
644 B
Nix

{ lib, buildPythonPackage, fetchPypi, six, cryptography }:
buildPythonPackage rec {
pname = "fido2";
version = "0.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "1pl8d2pr6jzqj4y9qiaddhjgnl92kikjxy0bgzm2jshkzzic8mp3";
};
# 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;
};
}