forked from mirrors/nixpkgs
pythonPackages.python-u2flib-host: init at 3.0.3
This commit is contained in:
parent
f053daf36c
commit
38e86a8f1e
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchPypi, buildPythonPackage, requests, hidapi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-u2flib-host";
|
||||
version = "3.0.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "02pwafd5kyjpc310ys0pgnd0adff1laz18naxxwsfrllqafqnrxb";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests hidapi ];
|
||||
|
||||
# Tests fail: "ValueError: underlying buffer has been detached"
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python based U2F host library";
|
||||
homepage = https://github.com/Yubico/python-u2flib-host;
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ jluttine ];
|
||||
};
|
||||
}
|
|
@ -16244,6 +16244,8 @@ EOF
|
|||
|
||||
potr = callPackage ../development/python-modules/potr {};
|
||||
|
||||
python-u2flib-host = callPackage ../development/python-modules/python-u2flib-host { };
|
||||
|
||||
pluggy = callPackage ../development/python-modules/pluggy {};
|
||||
|
||||
xcffib = callPackage ../development/python-modules/xcffib {};
|
||||
|
|
Loading…
Reference in a new issue