python3Packages.onlykey-solo-python: init at 0.0.28

This commit is contained in:
Wael M. Nasreddine 2021-08-18 19:54:37 -07:00
parent 6fae01f8ed
commit d136766caa
No known key found for this signature in database
GPG key ID: C179AC8181157CCE
2 changed files with 37 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -5009,6 +5009,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 { };
open-garage = callPackage ../development/python-modules/open-garage { };