Merge pull request #289391 from Erethon/erethon-loramon

loramon: init at 0.9.7
This commit is contained in:
Jon Seager 2024-02-28 08:50:09 +00:00 committed by GitHub
commit 86849ab446
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 40 additions and 0 deletions

View File

@ -5805,6 +5805,13 @@
githubId = 8706;
name = "Rafael Fernández López";
};
erethon = {
email = "dgrig@erethon.com";
matrix = "@dgrig:erethon.com";
github = "erethon";
githubId = 1254842;
name = "Dionysis Grigoropoulos";
};
ericbmerritt = {
email = "eric@afiniate.com";
github = "ericbmerritt";

View File

@ -0,0 +1,33 @@
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "loramon";
version = "0.9.7";
pyproject = true;
src = fetchFromGitHub {
owner = "markqvist";
repo = "LoRaMon";
rev = "refs/tags/${version}";
hash = "sha256-94tXhuAoaS1y/zGz63PPqOayRylGK0Ei2a6H4/BCB30";
};
nativeBuildInputs = with python3.pkgs; [
setuptools
];
propagatedBuildInputs = with python3.pkgs; [
pyserial
];
meta = with lib; {
description = "LoRa packet sniffer for RNode hardware";
homepage = "https://github.com/markqvist/LoRaMon";
changelog = "https://github.com/markqvist/LoRaMon/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ erethon ];
};
}