b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, async-timeout
|
|
, dbus-next
|
|
, myst-parser
|
|
, pytestCheckHook
|
|
, sphinxHook
|
|
, sphinx-rtd-theme
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bluetooth-adapters";
|
|
version = "0.3.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Bluetooth-Devices";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-PRYu3PTmSg25DiSuLnv1tp1cOZsXHGTmxRA2V39ab4k=";
|
|
};
|
|
|
|
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
|
|
dbus-next
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|