depot/third_party/nixpkgs/pkgs/development/python-modules/imgtool/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

48 lines
807 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
, cbor2
, click
, cryptography
, intelhex
, pyyaml
}:
buildPythonPackage rec {
pname = "imgtool";
version = "2.0.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-elQSVeae7B8Sqjjc4fHU/iDYISZ3xoqbbsY0ypGgZhI=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
cbor2
click
cryptography
intelhex
pyyaml
];
pythonImportsCheck = [
"imgtool"
];
meta = with lib; {
description = "MCUboot's image signing and key management";
mainProgram = "imgtool";
homepage = "https://github.com/mcu-tools/mcuboot";
license = licenses.asl20;
maintainers = with maintainers; [ samueltardieu ];
};
}