From 0c9a3d85178c14cfa1aa9e3c85ce1968bafb4829 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Sun, 25 Dec 2022 17:02:48 +0100 Subject: [PATCH 09/11] gnu: Add python-bleak. * gnu/packages/python-xyz.scm (python-bleak): New variable. diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 655724d95a..bb734ee6ea 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13789,6 +13789,28 @@ (define-public python-bleach (description "Bleach is an easy whitelist-based HTML-sanitizing tool.") (license license:asl2.0))) +(define-public python-bleak + (package + (name "python-bleak") + (version "0.19.5") + (source (origin + (method url-fetch) + (uri (pypi-uri "bleak" version)) + (sha256 + (base32 + "126dwfd9w4aflwxz5lxw6h2q0miigd548df7668c2n1w8nb5m147")))) + (build-system python-build-system) + (arguments + (list #:tests? #f)) + (propagated-inputs (list python-async-timeout + python-dbus-fast + python-typing-extensions)) + (home-page "https://github.com/hbldh/bleak") + (synopsis "Bluetooth Low Energy platform Agnostic Klient") + (description "This package provides GATT client software using +asyncio.") + (license license:expat))) + (define-public python-entrypoints (package (name "python-entrypoints") -- 2.38.1