about summary refs log tree commit diff
path: root/pkgs/development/tools/grabserial/default.nix
blob: c86c2e275ed1384b1606d63e5480e6bc4edb8209 (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
{ stdenv, fetchgit, pythonPackages }:

pythonPackages.buildPythonApplication rec {

  name = "grabserial-1.9.3";
  namePrefix = "";

  src = fetchgit {
    url = https://github.com/tbird20d/grabserial.git;
    rev  = "7cbf104b61ffdf68e6782a8e885050565399a014";
    sha256 = "043r2p5jw0ymx8ka1d39q1ap39i7sliq5f4w3yr1n53lzshjmc5g";
  };

  propagatedBuildInputs = [ pythonPackages.pyserial ];

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