nixpkgs/pkgs/development/python-modules/airthings-ble/default.nix

53 lines
1 KiB
Nix

{ lib
, bleak
, bleak-retry-connector
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "airthings-ble";
version = "0.5.6-4";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "vincegio";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-Ft5A2ZGVH9VHoRDAqDcc0rBfnQRxoXMylCAwUSwmViE=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'bleak-retry-connector = "^0.15.1"' 'bleak = "*"'
'';
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
bleak
bleak-retry-connector
];
# Module has no tests
doCheck = false;
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/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}