From 781945784e40422dc96214e72ca67a92cab2e6f6 Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Sat, 25 Jan 2025 14:30:06 +0100 Subject: [PATCH] gnu: Add python-dbus-fast. * gnu/packages/python-xyz.scm (python-dbus-fast): New variable. Change-Id: Ie3bfdf71c74bff59067c0b49554e77de0d7bbc49 --- gnu/packages/python-xyz.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4c6a28488610be962c5023f78ef0d1729d11aa4a..b5cf77698a00ed0e1fd5c3cce2fcfb3939b6b7b2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -38866,6 +38866,23 @@ profile. It supports: Currently, Linux is the only platform supported by this library.") (license license:expat))) +(define-public python-dbus-fast + (package + (name "python-dbus-fast") + (version "2.30.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "dbus_fast" version)) + (sha256 + (base32 "1cx71lbw716smpr4vsc9d421v45s36hcqj2z95nl3wm2yhan6ac7")))) + (build-system pyproject-build-system) + (native-inputs (list python-cython python-poetry-core python-setuptools + python-wheel)) + (home-page "https://github.com/bluetooth-devices/dbus-fast") + (synopsis "Faster version of dbus-next") + (description "This package provides a faster version of dbus-next.") + (license license:expat))) (define-public python-clrprint (package (name "python-clrprint")