nixpkgs/pkgs/development/tools/misc/tockloader/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
750 B
Nix
Raw Normal View History

{ lib
, python3Packages
}:
2020-02-22 20:59:02 +00:00
python3Packages.buildPythonApplication rec {
pname = "tockloader";
version = "1.6.0";
2020-02-22 20:59:02 +00:00
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "1aqkj1nplcw3gmklrhq6vxy6v9ad5mqiw4y1svasak2zkqdk1wyc";
2020-02-22 20:59:02 +00:00
};
propagatedBuildInputs = with python3Packages; [
argcomplete
colorama
crcmod
pyserial
pytoml
tqdm
2020-02-22 20:59:02 +00:00
];
# has no test suite
checkPhase = ''
runHook preCheck
$out/bin/tockloader --version | grep -q ${version}
runHook postCheck
'';
2020-02-22 20:59:02 +00:00
meta = with lib; {
homepage = "https://github.com/tock/tockloader";
license = licenses.mit;
description = "Tool for programming Tock onto hardware boards";
maintainers = with maintainers; [ ];
2020-02-22 20:59:02 +00:00
};
}