python3Packages.onlykey-solo-python: init at 0.0.28
(cherry picked from commit d136766caa50ddca210491230884365bf485457a)
This commit is contained in:
parent
a1007637ce
commit
50d1f373a3
|
@ -0,0 +1,35 @@
|
|||
{ buildPythonPackage
|
||||
, click
|
||||
, ecdsa
|
||||
, fetchPypi
|
||||
, fido2
|
||||
, intelhex
|
||||
, lib
|
||||
, pyserial
|
||||
, pyusb
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "onlykey-solo-python";
|
||||
version = "0.0.28";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-Mbi5So2OgeXjg4Fzg7v2gAJuh1Y7ZCYu8Lrha/7PQfY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ click ecdsa fido2 intelhex pyserial pyusb requests ];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "solo" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/trustcrypto/onlykey-solo-python";
|
||||
description = "Python library for OnlyKey with Solo FIDO2";
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
||||
|
|
@ -4728,6 +4728,8 @@ in {
|
|||
|
||||
onkyo-eiscp = callPackage ../development/python-modules/onkyo-eiscp { };
|
||||
|
||||
onlykey-solo-python = callPackage ../development/python-modules/onlykey-solo-python { };
|
||||
|
||||
onnx = callPackage ../development/python-modules/onnx { };
|
||||
|
||||
openant = callPackage ../development/python-modules/openant { };
|
||||
|
|
Loading…
Reference in New Issue