2016-09-26 02:09:25 -07:00
|
|
|
{ stdenv, fetchgit, pythonPackages }:
|
2015-01-22 09:17:41 -08:00
|
|
|
|
2016-09-26 02:09:25 -07:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2015-01-22 09:17:41 -08:00
|
|
|
|
2016-10-23 08:48:47 -07:00
|
|
|
name = "grabserial-1.9.3";
|
2015-09-07 06:53:22 -07:00
|
|
|
namePrefix = "";
|
2015-01-22 09:17:41 -08:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = https://github.com/tbird20d/grabserial.git;
|
2016-10-23 08:48:47 -07:00
|
|
|
rev = "7cbf104b61ffdf68e6782a8e885050565399a014";
|
|
|
|
sha256 = "043r2p5jw0ymx8ka1d39q1ap39i7sliq5f4w3yr1n53lzshjmc5g";
|
2015-01-22 09:17:41 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|