mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
python312Packages.imgtool: remove
This is already packaged as a proper Python application in mcuboot-imgtool. An alias redirects existing users.
This commit is contained in:
parent
982fe78f1c
commit
8c78777bac
@ -1,45 +0,0 @@
|
|||||||
{
|
|
||||||
lib,
|
|
||||||
buildPythonPackage,
|
|
||||||
fetchPypi,
|
|
||||||
pythonOlder,
|
|
||||||
setuptools,
|
|
||||||
cbor2,
|
|
||||||
click,
|
|
||||||
cryptography,
|
|
||||||
intelhex,
|
|
||||||
pyyaml,
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "imgtool";
|
|
||||||
version = "2.1.0";
|
|
||||||
pyproject = true;
|
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
hash = "sha256-T3+831PETqqmImUEUQzLUvfvAMmXUDz5STSzMMlge2A=";
|
|
||||||
};
|
|
||||||
|
|
||||||
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 ];
|
|
||||||
};
|
|
||||||
}
|
|
@ -268,6 +268,7 @@ mapAliases ({
|
|||||||
imdbpy = throw "imdbpy has been renamed to cinemagoer"; # added 2022-08-08
|
imdbpy = throw "imdbpy has been renamed to cinemagoer"; # added 2022-08-08
|
||||||
image-match = throw "image-match has been removed because it is no longer maintained"; # added 2023-06-10
|
image-match = throw "image-match has been removed because it is no longer maintained"; # added 2023-06-10
|
||||||
imgaug = throw "imgaug has been removed as it is no longer maintained"; # added 2023-07-10
|
imgaug = throw "imgaug has been removed as it is no longer maintained"; # added 2023-07-10
|
||||||
|
imgtool = throw "imgtool has been promoted to a top-level attribute name: `mcuboot-imgtool`"; # added 2024-10-09
|
||||||
intreehook = throw "intreehooks has been removed because it is obsolete as a backend-path key was added to PEP 517"; # added 2023-04-11
|
intreehook = throw "intreehooks has been removed because it is obsolete as a backend-path key was added to PEP 517"; # added 2023-04-11
|
||||||
ipaddress = throw "ipaddress has been removed because it is no longer required since python 2.7."; # added 2022-05-30
|
ipaddress = throw "ipaddress has been removed because it is no longer required since python 2.7."; # added 2022-05-30
|
||||||
ipdbplugin = throw "ipdbplugin has been removed because it has no longer maintained for 6 years"; # added 2024-05-21
|
ipdbplugin = throw "ipdbplugin has been removed because it has no longer maintained for 6 years"; # added 2024-05-21
|
||||||
|
@ -6039,8 +6039,6 @@ self: super: with self; {
|
|||||||
|
|
||||||
imgsize = callPackage ../development/python-modules/imgsize { };
|
imgsize = callPackage ../development/python-modules/imgsize { };
|
||||||
|
|
||||||
imgtool = callPackage ../development/python-modules/imgtool { };
|
|
||||||
|
|
||||||
imgw-pib = callPackage ../development/python-modules/imgw-pib { };
|
imgw-pib = callPackage ../development/python-modules/imgw-pib { };
|
||||||
|
|
||||||
imia = callPackage ../development/python-modules/imia { };
|
imia = callPackage ../development/python-modules/imia { };
|
||||||
|
Loading…
Reference in New Issue
Block a user