d2947cfef0
GitOrigin-RevId: 598f83ebeb2235435189cf84d844b8b73e858e0f
67 lines
1.2 KiB
Nix
67 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, async-timeout
|
|
, bleak
|
|
, dbus-fast
|
|
, myst-parser
|
|
, pytestCheckHook
|
|
, sphinxHook
|
|
, sphinx-rtd-theme
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bluetooth-adapters";
|
|
version = "0.6.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Bluetooth-Devices";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-26w7513h5WWGqKz4OqHob42O0bk1yW8ePPKB2V9+AHs=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Drop pytest arguments (coverage, ...)
|
|
sed -i '/addopts/d' pyproject.toml
|
|
'';
|
|
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
myst-parser
|
|
poetry-core
|
|
sphinx-rtd-theme
|
|
sphinxHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
async-timeout
|
|
bleak
|
|
dbus-fast
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"bluetooth_adapters"
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/bluetooth-devices/bluetooth-adapters/blob/main/CHANGELOG.md";
|
|
description = "Tools to enumerate and find Bluetooth Adapters";
|
|
homepage = "https://bluetooth-adapters.readthedocs.io/";
|
|
license = licenses.asl20;
|
|
maintainers = teams.home-assistant.members;
|
|
};
|
|
}
|