Merge pull request #80829 from mweinelt/pr/tockloader

tockloader: init at v1.4.0
This commit is contained in:
Lassulus 2020-05-22 18:31:02 +02:00 committed by GitHub
commit fb13a1fc8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "tockloader";
version = "1.4.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0l8mvlqzyq2bfb6g5zhgv2ndgyyrmpww2l7f2snbli73g6x5j2g2";
};
propagatedBuildInputs = with python3Packages; [
argcomplete
colorama
crcmod
pytoml
pyserial
];
meta = with lib; {
homepage = "https://github.com/tock/tockloader";
license = licenses.mit;
description = "Tool for programming Tock onto hardware boards.";
maintainers = with maintainers; [ hexa ];
};
}

View file

@ -24045,6 +24045,8 @@ in
tinyfugue = callPackage ../games/tinyfugue { };
tockloader = callPackage ../development/tools/misc/tockloader { };
tome2 = callPackage ../games/tome2 { };
tome4 = callPackage ../games/tome4 { };