all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#62884] [PATCH] gnu: Add python-extract-dtb.
@ 2023-04-16 13:46 路辉
  0 siblings, 0 replies; only message in thread
From: 路辉 @ 2023-04-16 13:46 UTC (permalink / raw)
  To: 62884

From d75988c92da663715069fb660afb70333349551e Mon Sep 17 00:00:00 2001
From: LuHui <luhux76@gmail.com>
Date: Sun, 16 Apr 2023 21:43:44 +0800
Subject: [PATCH] gnu: Add python-extract-dtb.

* gnu/packages/python-xyz.scm (python-extract-dtb): New variable.
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0147870b06..887646e04f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -135,6 +135,7 @@
 ;;; Copyright © 2023 Gabriel Wicki <gabriel@erlikon.ch>
 ;;; Copyright © 2023 Amade Nemes <nemesamade@gmail.com>
 ;;; Copyright © 2023 Bruno Victal <mirai@makinata.eu>
+;;; Copyright © 2023 Lu Hui <luhux76@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3624,6 +3625,23 @@ (define-public python-extras
      "Extras is a set of extensions to the Python standard library.")
     (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 "Tool to split a kernel image with appended dtbs into
+separated kernel and dtb files.")
+    (license license:gpl3+)))
+
 (define-public python-mimeparse
   (package
     (name "python-mimeparse")
-- 
2.35.7




^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2023-04-16 13:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-16 13:46 [bug#62884] [PATCH] gnu: Add python-extract-dtb 路辉

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.