chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / lo / loramon / package.nix
blob9665026ff5118b83283f8d3de2cc6584d70b5532
1 { lib
2 , python3
3 , fetchFromGitHub
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "loramon";
8   version = "0.9.7";
9   pyproject = true;
11   src = fetchFromGitHub {
12     owner = "markqvist";
13     repo = "LoRaMon";
14     rev = "refs/tags/${version}";
15     hash = "sha256-94tXhuAoaS1y/zGz63PPqOayRylGK0Ei2a6H4/BCB30";
16   };
18   nativeBuildInputs = with python3.pkgs; [
19     setuptools
20   ];
22   propagatedBuildInputs = with python3.pkgs; [
23     pyserial
24   ];
26   meta = with lib; {
27     description = "LoRa packet sniffer for RNode hardware";
28     mainProgram = "loramon";
29     homepage = "https://github.com/markqvist/LoRaMon";
30     changelog = "https://github.com/markqvist/LoRaMon/releases/tag/${version}";
31     license = licenses.mit;
32     maintainers = with maintainers; [ erethon ];
33   };