From unknown Thu Aug 14 12:25:11 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#60437 <60437@debbugs.gnu.org> To: bug#60437 <60437@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add python-elgato-streamdeck. Reply-To: bug#60437 <60437@debbugs.gnu.org> Date: Thu, 14 Aug 2025 19:25:11 +0000 retitle 60437 [PATCH] gnu: Add python-elgato-streamdeck. reassign 60437 guix-patches submitter 60437 Brian Cully severity 60437 normal tag 60437 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 30 16:46:08 2022 Received: (at submit) by debbugs.gnu.org; 30 Dec 2022 21:46:08 +0000 Received: from localhost ([127.0.0.1]:36197 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pBNCZ-0003yt-PJ for submit@debbugs.gnu.org; Fri, 30 Dec 2022 16:46:08 -0500 Received: from lists.gnu.org ([209.51.188.17]:54024) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pBNCY-0003yl-3Y for submit@debbugs.gnu.org; Fri, 30 Dec 2022 16:46:06 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pBNCV-0002qD-0P for guix-patches@gnu.org; Fri, 30 Dec 2022 16:46:03 -0500 Received: from coleridge.kublai.com ([166.84.7.167] helo=mail.spork.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pBNCQ-00017B-Vz for guix-patches@gnu.org; Fri, 30 Dec 2022 16:46:02 -0500 Received: from psyduck.jhoto.kublai.com (ool-18b8e9e7.dyn.optonline.net [24.184.233.231]) by mail.spork.org (Postfix) with ESMTPSA id 588FBB589; Fri, 30 Dec 2022 16:45:58 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=spork.org; s=dkim; t=1672436758; bh=85zB9CfWwi6msmbY76elviiz8948Jx6BS1Cv6fZIIMg=; h=From:To:Cc:Subject:Date; b=Pt0+9iW7i3PBLJhTwM5+6kaIfMVIf0S0/1LLNOIRXP1YBM13wieLWtb4tkwfp/0BG xqY/VBFlLAFF8INxjetRrdzMM1tf3FKtMIim5YMDMzVo7mVYlurMT+ZAWsznwqh15z 93h7I4T1GIvrNvUdr3un4OX2zOt4FTVA7qiFc/N4= From: Brian Cully To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-elgato-streamdeck. Date: Fri, 30 Dec 2022 16:45:46 -0500 Message-Id: <2a939ae3310e4a6973507cd7af4daecc6eeb72cd.1672436745.git.bjc@spork.org> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=166.84.7.167; envelope-from=bjc@spork.org; helo=mail.spork.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Brian Cully X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/python-xyz.scm: (python-elgato-streamdeck) New variable. --- gnu/packages/python-xyz.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d2623bc32d..445efe563b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27734,6 +27734,35 @@ (define-public python-rnc2rng equivalent schemata in the XML-based default RELAX NG syntax.") (license license:expat))) +(define-public python-elgato-streamdeck + (package + (name "python-elgato-streamdeck") + (version "0.9.3") + (source (origin + (method url-fetch) + (uri (pypi-uri "streamdeck" version)) + (sha256 + (base32 + "0wgcvz3l3qllwvsadsq6y96wc3p16agzmwwx26v3ir0ns6q5dczm")))) + (build-system python-build-system) + (arguments + (list #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'patch-source + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "src/StreamDeck/Transport/LibUSBHIDAPI.py" + (("libhidapi-libusb.so") + (search-input-file inputs + "/lib/libhidapi-libusb.so")))))))) + (home-page "https://github.com/abcminiuser/python-elgato-streamdeck") + (synopsis "Library to control Elgato StreamDeck devices") + (description "Library to control Elgato StreamDeck devices.") + (license (license:non-copyleft + (string-append + "https://github.com/abcminiuser/python-elgato-streamdeck" + "/blob/master/LICENSE"))) + (propagated-inputs (list python-pillow)) + (inputs (list hidapi)))) + (define-public python-pynput (package (name "python-pynput") -- 2.38.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 06 14:56:02 2023 Received: (at 60437) by debbugs.gnu.org; 6 Apr 2023 18:56:02 +0000 Received: from localhost ([127.0.0.1]:55154 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pkUm9-0006ez-Lc for submit@debbugs.gnu.org; Thu, 06 Apr 2023 14:56:02 -0400 Received: from coleridge.kublai.com ([166.84.7.167]:59064 helo=mail.spork.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pkUm8-0006ek-8n for 60437@debbugs.gnu.org; Thu, 06 Apr 2023 14:56:00 -0400 Received: from psyduck (ool-18b8e9e7.dyn.optonline.net [24.184.233.231]) by mail.spork.org (Postfix) with ESMTPSA id 172E4A54B for <60437@debbugs.gnu.org>; Thu, 6 Apr 2023 14:56:00 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=spork.org; s=dkim; t=1680807360; bh=s9lAHgEaxZcRKC4iPMww4jQs9OpyscAWvJPY9k5RAhc=; h=From:To:Subject:References:Date:In-Reply-To; b=h3NDO1yAd95DcidAbBVEGdT9iVyXlpcOPXYNosEGNS6FS4a+No+dNaFvF4ZpkTxFS qEHyTL7ehHDVaXeVrYi4OHMh2n9uCsA0SNmq78Jbrj+4G8ipiisL4+zITPfpxuTkIg s8rdDPLSV9tDo3HkKUWreGS5Ky/dR/FlA34DcaVU= From: Brian Cully To: 60437@debbugs.gnu.org Subject: Re: bug#60437: [PATCH] gnu: Add python-elgato-streamdeck. References: <2a939ae3310e4a6973507cd7af4daecc6eeb72cd.1672436745.git.bjc@spork.org> Date: Thu, 06 Apr 2023 14:56:04 -0400 In-Reply-To: <2a939ae3310e4a6973507cd7af4daecc6eeb72cd.1672436745.git.bjc@spork.org> (Brian Cully's message of "Fri, 30 Dec 2022 16:45:46 -0500") Message-ID: <87355cyh4r.fsf@psyduck.jhoto.kublai.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 60437 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Can someone please take a look at this patch? It still applies cleanly to master. I've been using this, by way of =E2=80=98python-streamdeck-ui=E2=80=99 for = many months now.