depot/third_party/nixpkgs/pkgs/development/python-modules/meshtastic/default.nix
Default email aa526eb20f Project import generated by Copybara.
GitOrigin-RevId: fcd48a5a0693f016a5c370460d0c2a8243b882dc
2022-03-10 11:12:11 -08:00

65 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, dotmap
, fetchFromGitHub
, pexpect
, protobuf
, pygatt
, pypubsub
, pyqrcode
, pyserial
, pytestCheckHook
, pythonOlder
, pyyaml
, tabulate
, pytap2
, timeago
}:
buildPythonPackage rec {
pname = "meshtastic";
version = "1.2.90";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "meshtastic";
repo = "Meshtastic-python";
rev = version;
sha256 = "sha256-n/M1Q6YS3EkUcn45ffiTy0wuj9yKf6qBLLfD2XJkhHU=";
};
propagatedBuildInputs = [
dotmap
pexpect
protobuf
pygatt
pypubsub
pyqrcode
pyserial
pyyaml
tabulate
timeago
];
checkInputs = [
pytap2
pytestCheckHook
];
preCheck = ''
export PATH="$PATH:$out/bin";
'';
pythonImportsCheck = [
"meshtastic"
];
meta = with lib; {
description = "Python API for talking to Meshtastic devices";
homepage = "https://meshtastic.github.io/Meshtastic-python/";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}