Skip to content

Commit

Permalink
mcuboot-imgtool: init at 1.10.0
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Salvador <[email protected]>
  • Loading branch information
otavio committed Oct 31, 2023
1 parent 13f5021 commit d10118a
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pkgs/by-name/mc/mcuboot-imgtool/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{ lib
, fetchPypi
, python3Packages
, nix-update-script
}:

python3Packages.buildPythonApplication rec {
pname = "mfgtool-imgtool";
version = "1.10.0";
pyproject = true;

src = fetchPypi {
inherit version;
pname = "imgtool";
hash = "sha256-A7NOdZNKw9lufEK2vK8Rzq9PRT98bybBfXJr0YMQS0A=";
};

passthru.updateScript = nix-update-script { };

nativeBuildInputs = with python3Packages; [
setuptools
];

propagatedBuildInputs = with python3Packages; [
cbor2
click
cryptography
intelhex
];

meta = with lib; {
description = "MCUboot's image signing and key management";
homepage = "https://github.com/mcu-tools/mcuboot/tree/main/scripts";
license = licenses.asl20;
maintainers = with maintainers; [ otavio ];
mainProgram = "imgtool";
};
}

0 comments on commit d10118a

Please sign in to comment.