55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
async-timeout,
|
|
bluetooth-adapters,
|
|
btsocket,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
pyric,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
usb-devices,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bluetooth-auto-recovery";
|
|
version = "1.4.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Bluetooth-Devices";
|
|
repo = "bluetooth-auto-recovery";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-JaFazXjbHohj4+rPkQA/SaBP0irHrre3vaCqz7T2bwE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail " --cov=bluetooth_auto_recovery --cov-report=term-missing:skip-covered" ""
|
|
'';
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
async-timeout
|
|
bluetooth-adapters
|
|
btsocket
|
|
pyric
|
|
usb-devices
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "bluetooth_auto_recovery" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library for recovering Bluetooth adapters";
|
|
homepage = "https://github.com/Bluetooth-Devices/bluetooth-auto-recovery";
|
|
changelog = "https://github.com/Bluetooth-Devices/bluetooth-auto-recovery/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|