5 , bleak-retry-connector
13 buildPythonPackage rec {
14 pname = "airthings-ble";
18 disabled = pythonOlder "3.9";
20 src = fetchFromGitHub {
22 repo = "airthings-ble";
23 rev = "refs/tags/${version}";
24 hash = "sha256-BeOrGRVxvfQR1xqIpOp4tOTvlqTKCZHUjVKDqVjVnYM=";
28 substituteInPlace pyproject.toml \
29 --replace-fail "-v -Wdefault --cov=airthings_ble --cov-report=term-missing:skip-covered" ""
36 propagatedBuildInputs = [
40 ] ++ lib.optionals (pythonOlder "3.11") [
48 pythonImportsCheck = [
53 description = "Library for Airthings BLE devices";
54 homepage = "https://github.com/vincegio/airthings-ble";
55 changelog = "https://github.com/vincegio/airthings-ble/releases/tag/v${version}";
56 license = with licenses; [ mit ];
57 maintainers = with maintainers; [ fab ];