Diff: https://github.com/vincegio/airthings-ble/compare/refs/tags/1.0.0...refs/tags/1.1.0 Changelog: https://github.com/vincegio/airthings-ble/releases/tag/1.1.0
54 lines
1.0 KiB
Nix
54 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
async-interrupt,
|
|
async-timeout,
|
|
bleak,
|
|
bleak-retry-connector,
|
|
buildPythonPackage,
|
|
cbor2,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
pytest-cov-stub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "airthings-ble";
|
|
version = "1.1.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vincegio";
|
|
repo = "airthings-ble";
|
|
tag = version;
|
|
hash = "sha256-eZjMRely3UxcnjPB6DQDBOKdP+2kFCe/5fchiX+rcEM=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
async-interrupt
|
|
bleak
|
|
bleak-retry-connector
|
|
cbor2
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-cov-stub
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "airthings_ble" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library for Airthings BLE devices";
|
|
homepage = "https://github.com/vincegio/airthings-ble";
|
|
changelog = "https://github.com/vincegio/airthings-ble/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|