cd4036a325
Diff: https://github.com/hbldh/bleak/compare/refs/tags/v0.20.1...v0.20.2 Changelog: https://github.com/hbldh/bleak/blob/v0.20.2/CHANGELOG.rst
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{ lib
|
|
, async-timeout
|
|
, bluez
|
|
, buildPythonPackage
|
|
, dbus-fast
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bleak";
|
|
version = "0.20.2";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hbldh";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-hiQSsQHq1hoCQhoWU50i2NXYR/LaTHAize9cfr1uZsY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
async-timeout
|
|
dbus-fast
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
# bleak checks BlueZ's version with a call to `bluetoothctl --version`
|
|
substituteInPlace bleak/backends/bluezdbus/__init__.py \
|
|
--replace \"bluetoothctl\" \"${bluez}/bin/bluetoothctl\"
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"bleak"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Bluetooth Low Energy platform agnostic client";
|
|
homepage = "https://github.com/hbldh/bleak";
|
|
changelog = "https://github.com/hbldh/bleak/blob/v${version}/CHANGELOG.rst";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ oxzi ];
|
|
};
|
|
}
|