Skip to content

Commit

Permalink
loramon: init at 0.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Erethon committed Feb 16, 2024
1 parent a2e9583 commit 9dab805
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/by-name/lo/loramon/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ lib
, python3Packages
, fetchFromGitHub
}:

python3Packages.buildPythonApplication rec {
pname = "loramon";
version = "0.9.7";
format = "setuptools";

src = fetchFromGitHub {
owner = "markqvist";
repo = "LoRaMon";
rev = "refs/tags/${version}";
hash = "sha256-94tXhuAoaS1y/zGz63PPqOayRylGK0Ei2a6H4/BCB30";
};

propagatedBuildInputs = with python3Packages; [
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 ];
};
}

0 comments on commit 9dab805

Please sign in to comment.