depot/third_party/nixpkgs/pkgs/development/python-modules/python-u2flib-host/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

24 lines
640 B
Nix

{ lib, fetchPypi, buildPythonPackage, requests, hidapi }:
buildPythonPackage rec {
pname = "python-u2flib-host";
version = "3.0.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "02pwafd5kyjpc310ys0pgnd0adff1laz18naxxwsfrllqafqnrxb";
};
propagatedBuildInputs = [ requests hidapi ];
# Tests fail: "ValueError: underlying buffer has been detached"
doCheck = false;
meta = with lib; {
description = "Python based U2F host library";
homepage = "https://github.com/Yubico/python-u2flib-host";
license = licenses.bsd2;
maintainers = with maintainers; [ jluttine ];
};
}