mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
d8f8dfd940
Bluetooth parser for LeaOne devices https://github.com/bluetooth-devices/leaone-ble
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
bluetooth-data-tools,
|
|
bluetooth-sensor-state-data,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
home-assistant-bluetooth,
|
|
poetry-core,
|
|
pytest-cov-stub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
sensor-state-data,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "leaone-ble";
|
|
version = "0.1.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bluetooth-devices";
|
|
repo = "leaone-ble";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-usFjI0zU89dEAbmx9mVemoxlYS8mmLTKIMhH26Rvkeg=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
bluetooth-data-tools
|
|
bluetooth-sensor-state-data
|
|
home-assistant-bluetooth
|
|
sensor-state-data
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-cov-stub
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "leaone_ble" ];
|
|
|
|
meta = {
|
|
description = "Bluetooth parser for LeaOne devices";
|
|
homepage = "https://github.com/bluetooth-devices/leaone-ble";
|
|
changelog = "https://github.com/bluetooth-devices/leaone-ble/blob/${src.rev}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|