about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/grabserial/default.nix
blob: 5e06e9f771d9fd05dba0787806428cecd0910cd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, fetchFromGitHub, pythonPackages }:

pythonPackages.buildPythonApplication rec {
  pname = "grabserial";
  version = "1.9.9";

  src = fetchFromGitHub {
    owner = "tbird20d";
    repo = "grabserial";
    rev = "v${version}";
    sha256 = "0cwrajkh605gfhshrlpbc32gmx86a8kv3pq7cv713k60sgqrgpqx";
  };

  propagatedBuildInputs = [ pythonPackages.pyserial ];

  meta = with lib; {
    description = "Python based serial dump and timing program";
    homepage = "https://github.com/tbird20d/grabserial";
    license = licenses.gpl2;
    maintainers = with maintainers; [ vmandela ];
    platforms = platforms.linux;
  };
}