8 python3.pkgs.buildPythonApplication rec {
9 pname = "uefi-firmware-parser";
13 src = fetchFromGitHub {
15 repo = "uefi-firmware-parser";
17 hash = "sha256-Yiw9idmvSpx4CcVrXHznR8vK/xl7DTL+L7k4Nvql2B8=";
21 python3.pkgs.setuptools
25 dependencies = [ python3.pkgs.future ];
27 pythonImportsCheck = [ "uefi_firmware" ];
29 passthru.updateScript = nix-update-script { };
32 description = "Tool for parsing, extracting, and recreating UEFI firmware volumes";
33 homepage = "https://github.com/theopolis/uefi-firmware-parser";
34 license = lib.licenses.mit;
35 platforms = lib.platforms.unix;
36 maintainers = with lib.maintainers; [ KSJ2000 ];
37 mainProgram = "uefi-firmware-parser";