Skip to content

Commit 9e2ff1f

Browse files
committed
python3Packages.rcar-flash: init at 0.1.0-unstable-2025-07-18
1 parent d2c4919 commit 9e2ff1f

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
lib,
3+
fetchFromGitHub,
4+
buildPythonPackage,
5+
setuptools,
6+
pyserial,
7+
pyyaml,
8+
pyftdi,
9+
}:
10+
11+
buildPythonPackage {
12+
pname = "rcar-flash";
13+
version = "0.1.0-unstable-2025-07-18";
14+
format = "setuptools";
15+
16+
src = fetchFromGitHub {
17+
owner = "xen-troops";
18+
repo = "rcar_flash";
19+
rev = "f1de190c153926de67aced31884da13443737b88";
20+
hash = "sha256-qNRcMuxKNqzaARIXm3wz+GmwORTpxqeSTMBSp2JFJSU=";
21+
};
22+
23+
build-system = [
24+
setuptools
25+
];
26+
27+
dependencies = [
28+
pyserial
29+
pyyaml
30+
pyftdi
31+
];
32+
33+
# no tests implemented
34+
doCheck = false;
35+
36+
pythonImportsCheck = [ "rcar_flash" ];
37+
38+
meta = {
39+
homepage = "https://github.com/xen-troops/rcar_flash";
40+
description = "Simple command line tool to automate writing IPLs (firmware) to Renesas RCAR-based boards";
41+
mainProgram = "rcar_flash";
42+
license = lib.licenses.mit;
43+
maintainers = [ lib.maintainers.zatm8 ];
44+
};
45+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16023,6 +16023,8 @@ self: super: with self; {
1602316023

1602416024
rbtools = callPackage ../development/python-modules/rbtools { };
1602516025

16026+
rcar-flash = callPackage ../applications/misc/rcar-flash { };
16027+
1602616028
rchitect = callPackage ../development/python-modules/rchitect { };
1602716029

1602816030
rclone-python = callPackage ../development/python-modules/rclone-python { };

0 commit comments

Comments
 (0)