diff options
Diffstat (limited to 'pkgs/development/python-modules/bleak/default.nix')
-rw-r--r-- | pkgs/development/python-modules/bleak/default.nix | 35 |
1 files changed, 16 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/bleak/default.nix b/pkgs/development/python-modules/bleak/default.nix index f53f614867ec..9fde15cf9d6a 100644 --- a/pkgs/development/python-modules/bleak/default.nix +++ b/pkgs/development/python-modules/bleak/default.nix @@ -1,19 +1,20 @@ -{ lib -, async-timeout -, bluez -, buildPythonPackage -, dbus-fast -, fetchFromGitHub -, poetry-core -, pytest-asyncio -, pytestCheckHook -, pythonOlder -, typing-extensions +{ + lib, + async-timeout, + bluez, + buildPythonPackage, + dbus-fast, + fetchFromGitHub, + poetry-core, + pytest-asyncio, + pytestCheckHook, + pythonOlder, + typing-extensions, }: buildPythonPackage rec { pname = "bleak"; - version = "0.21.1"; + version = "0.22.3"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -22,7 +23,7 @@ buildPythonPackage rec { owner = "hbldh"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-T0im8zKyNLbskAEDeUUFS/daJtvttlHlttjscqP8iSk="; + hash = "sha256-kPeKQcJETZE6+btQsmCgb37yRI2Klg0lZ1ZIrm8ODow="; }; postPatch = '' @@ -31,9 +32,7 @@ buildPythonPackage rec { --replace \"bluetoothctl\" \"${bluez}/bin/bluetoothctl\" ''; - nativeBuildInputs = [ - poetry-core - ]; + nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ async-timeout @@ -46,9 +45,7 @@ buildPythonPackage rec { pytestCheckHook ]; - pythonImportsCheck = [ - "bleak" - ]; + pythonImportsCheck = [ "bleak" ]; meta = with lib; { description = "Bluetooth Low Energy platform agnostic client"; |