mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
28 lines
601 B
Nix
28 lines
601 B
Nix
{ 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 ];
|
|
};
|
|
}
|
|
|