From e6c349c4fa7bb22721dbc5cafd8094a7768ee50d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 5 Feb 2025 17:40:39 +0100 Subject: [PATCH] python313Packages.bluetooth-adapters: 0.21.0 -> 0.21.1 (#376093) https://github.com/bluetooth-devices/bluetooth-adapters/blob/v0.21.1/CHANGELOG.md --- .../python-modules/bluetooth-adapters/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/bluetooth-adapters/default.nix b/pkgs/development/python-modules/bluetooth-adapters/default.nix index 97d9893995a0..99a036aa16a9 100644 --- a/pkgs/development/python-modules/bluetooth-adapters/default.nix +++ b/pkgs/development/python-modules/bluetooth-adapters/default.nix @@ -11,6 +11,7 @@ myst-parser, poetry-core, pytest-asyncio, + pytest-cov-stub, pytestCheckHook, pythonOlder, sphinx-rtd-theme, @@ -21,7 +22,7 @@ buildPythonPackage rec { pname = "bluetooth-adapters"; - version = "0.21.0"; + version = "0.21.1"; pyproject = true; disabled = pythonOlder "3.9"; @@ -30,14 +31,9 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = "bluetooth-adapters"; tag = "v${version}"; - hash = "sha256-DQaxjSajO3SfmogWtstT6xcsUgUW80jJ5prfIajJW/s="; + hash = "sha256-002MVDFNU2/rVepj3BCCuDQqRMAvgP0ZJ7tknQN+Qhk="; }; - postPatch = '' - # Drop pytest arguments (coverage, ...) - sed -i '/addopts/d' pyproject.toml - ''; - outputs = [ "out" "doc" @@ -63,6 +59,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest-asyncio + pytest-cov-stub pytestCheckHook ];