From 8cfc80fe49663fc03e2927f44d938edf41ad6a93 Mon Sep 17 00:00:00 2001 From: Elliot Berman Date: Wed, 3 Jun 2026 20:11:14 -0700 Subject: [PATCH] python3Packages: uefi-firmware-parser: 1.13 -> 1.16, updateScript, and maintainer Uprev uefi-firmware-parser to 1.16, add automatic updateScript, and myself as maintainer. (cherry picked from commit 2854ca9ce029fd7d3a7113ea740e2a78f9746ff2) --- .../python-modules/uefi-firmware-parser/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/uefi-firmware-parser/default.nix b/pkgs/development/python-modules/uefi-firmware-parser/default.nix index ed7946baf952..031880430d35 100644 --- a/pkgs/development/python-modules/uefi-firmware-parser/default.nix +++ b/pkgs/development/python-modules/uefi-firmware-parser/default.nix @@ -2,20 +2,21 @@ fetchFromGitHub, lib, buildPythonPackage, + nix-update-script, setuptools, wheel, }: buildPythonPackage (finalAttrs: { pname = "uefi-firmware-parser"; - version = "1.13"; + version = "1.16"; pyproject = true; src = fetchFromGitHub { owner = "theopolis"; repo = "uefi-firmware-parser"; tag = "v${finalAttrs.version}"; - hash = "sha256-Yiw9idmvSpx4CcVrXHznR8vK/xl7DTL+L7k4Nvql2B8="; + hash = "sha256-2vYTOC7cOiQXPMhYM+hqmFyCJeXCkx6RSxgaTIZqbds="; }; build-system = [ @@ -27,13 +28,15 @@ buildPythonPackage (finalAttrs: { pythonImportsCheck = [ "uefi_firmware" ]; + passthru.updateScript = nix-update-script { }; + meta = { description = "Tool for parsing, extracting, and recreating UEFI firmware volumes"; homepage = "https://github.com/theopolis/uefi-firmware-parser"; changelog = "https://github.com/theopolis/uefi-firmware-parser/releases/tag/${finalAttrs.src.rev}"; license = lib.licenses.mit; mainProgram = "uefi-firmware-parser"; - maintainers = [ ]; + maintainers = [ lib.maintainers.elliotberman ]; platforms = lib.platforms.unix; }; })