3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/grabserial/default.nix

24 lines
626 B
Nix
Raw Normal View History

2019-09-07 08:29:35 +01:00
{ lib, fetchFromGitHub, pythonPackages }:
2019-09-07 08:29:35 +01:00
pythonPackages.buildPythonApplication rec {
pname = "grabserial";
2019-11-26 01:03:20 +00:00
version = "1.9.9";
2019-09-07 08:29:35 +01:00
src = fetchFromGitHub {
owner = "tbird20d";
repo = "grabserial";
rev = "v${version}";
2019-11-26 01:03:20 +00:00
sha256 = "0cwrajkh605gfhshrlpbc32gmx86a8kv3pq7cv713k60sgqrgpqx";
};
propagatedBuildInputs = [ pythonPackages.pyserial ];
2019-09-07 08:29:35 +01:00
meta = with lib; {
description = "Python based serial dump and timing program";
2019-09-07 08:29:35 +01:00
homepage = "https://github.com/tbird20d/grabserial";
license = licenses.gpl2;
maintainers = with maintainers; [ vmandela ];
platforms = platforms.linux;
};
}