diff --git a/pkgs/development/python-modules/bluetooth-data-tools/default.nix b/pkgs/development/python-modules/bluetooth-data-tools/default.nix index 2233fedecc9d..f3479add8be5 100644 --- a/pkgs/development/python-modules/bluetooth-data-tools/default.nix +++ b/pkgs/development/python-modules/bluetooth-data-tools/default.nix @@ -5,26 +5,22 @@ cryptography, cython, poetry-core, - pytest-benchmark, pytest-codspeed, pytest-cov-stub, pytestCheckHook, - pythonOlder, setuptools, }: buildPythonPackage rec { pname = "bluetooth-data-tools"; - version = "1.28.3"; + version = "1.28.4"; pyproject = true; - disabled = pythonOlder "3.10"; - src = fetchFromGitHub { owner = "Bluetooth-Devices"; repo = "bluetooth-data-tools"; tag = "v${version}"; - hash = "sha256-xeBqxGOyxjR/O593ctyfwASxBZIeRBTdpVI981gOw5o="; + hash = "sha256-IAGlM1B/PAPyaBIfHG3RScn8odboZMg3YmQJSfoyKR4="; }; # The project can build both an optimized cython version and an unoptimized @@ -40,15 +36,11 @@ buildPythonPackage rec { dependencies = [ cryptography ]; nativeCheckInputs = [ - pytest-benchmark pytest-codspeed pytest-cov-stub - pytest-codspeed pytestCheckHook ]; - pytestFlags = [ "--benchmark-disable" ]; - pythonImportsCheck = [ "bluetooth_data_tools" ]; meta = with lib; {