Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
772 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
fetchFromGitHub,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "grabserial";
version = "2.1.8";
format = "pyproject";
src = fetchFromGitHub {
owner = "tbird20d";
repo = "grabserial";
tag = "v${version}";
hash = "sha256-XHI5r4OkJUtMuH83jKvNttEpKpqARjxj9SDLzhSPxSc=";
};
build-system = [ python3Packages.setuptools ];
dependencies = [ python3Packages.pyserial ];
# no usable tests
doCheck = false;
meta = {
description = "Python based serial dump and timing program";
mainProgram = "grabserial";
homepage = "https://github.com/tbird20d/grabserial";
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ vmandela ];
platforms = lib.platforms.linux;
};
}