at 23.11-beta 26 lines 669 B view raw
1{ lib, fetchFromGitHub, python3Packages }: 2 3python3Packages.buildPythonApplication rec { 4 pname = "grabserial"; 5 version = "2.0.2"; 6 7 src = fetchFromGitHub { 8 owner = "tbird20d"; 9 repo = "grabserial"; 10 rev = "v${version}"; 11 sha256 = "0ryk4w8q6zfmia71nwnk5b7xaxw0sf45dw9q50xp7k76i3k5f9f3"; 12 }; 13 14 propagatedBuildInputs = [ python3Packages.pyserial ]; 15 16 # no usable tests 17 doCheck = false; 18 19 meta = with lib; { 20 description = "Python based serial dump and timing program"; 21 homepage = "https://github.com/tbird20d/grabserial"; 22 license = licenses.gpl2; 23 maintainers = with maintainers; [ vmandela ]; 24 platforms = platforms.linux; 25 }; 26}