This is an automated email from the git hooks/post-receive script. ngz pushed a commit to branch master in repository guix.
The following commit(s) were added to refs/heads/master by this push: new db41a620d6 gnu: Add python-extract-dtb. db41a620d6 is described below commit db41a620d6c8434241cbb899e7149c18aa73cb73 Author: Lu Hui <luhu...@gmail.com> AuthorDate: Tue Feb 25 12:44:40 2025 +0100 gnu: Add python-extract-dtb. * gnu/packages/python-xyz.scm (python-extract-dtb): New variable. Change-Id: I1c0bab94ac2acca5b16fb0a7a335960b22f7b6d4 Signed-off-by: Nicolas Goaziou <m...@nicolasgoaziou.fr> --- gnu/packages/python-xyz.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 34d20dda8a..1686280229 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -135,6 +135,7 @@ ;;; Copyright © 2023 Gabriel Wicki <gabr...@erlikon.ch> ;;; Copyright © 2023 Amade Nemes <nemesam...@gmail.com> ;;; Copyright © 2023 Bruno Victal <mi...@makinata.eu> +;;; Copyright © 2023 Lu Hui <luhu...@gmail.com> ;;; Copyright © 2023 Kaelyn Takata <kaelyn.al...@protonmail.com> ;;; Copyright © 2023 dan <i@dan.games> ;;; Copyright © 2023 Dominik Delgado Steuter <d...@delgado.nrw> @@ -5826,6 +5827,24 @@ interface programs. This library provides features to parse arguments, automatic tab-completion, color support, logging to @code{std}, etc.") (license license:expat))) +(define-public python-extract-dtb + (package + (name "python-extract-dtb") + (version "1.2.3") + (source (origin + (method url-fetch) + (uri (pypi-uri "extract-dtb" version)) + (sha256 + (base32 + "1a7rfvwisgri8b00pch6d9pfrl8s93w8g09yzxf4xh0qvmsxmh43")))) + (build-system python-build-system) + (home-page "https://github.com/PabloCastellano/extract-dtb/") + (synopsis "Extract device tree blobs (DTB) from kernel images") + (description + "This package provides a tool to split a kernel image with appended +@acronym{DTB, Device Tree Blobs} into separated kernel and DTB files.") + (license license:gpl3+))) + (define-public python-mimeparse (package (name "python-mimeparse")