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

58 lines
1.1 KiB
Nix

{ lib
, bluetooth-data-tools
, bluetooth-sensor-state-data
, buildPythonPackage
, fetchFromGitHub
, hatchling
, home-assistant-bluetooth
, pytestCheckHook
, pythonOlder
, sensor-state-data
}:
buildPythonPackage rec {
pname = "ruuvitag-ble";
version = "0.1.2";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "Bluetooth-Devices";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-J+807p2mE+VZ0oqldFtjdcNGsRTkAU54s6byQSGrng4=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
bluetooth-data-tools
bluetooth-sensor-state-data
home-assistant-bluetooth
sensor-state-data
];
nativeCheckInputs = [
pytestCheckHook
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=ruuvitag_ble --cov-report=term-missing:skip-covered" ""
'';
pythonImportsCheck = [
"ruuvitag_ble"
];
meta = with lib; {
description = "Library for Ruuvitag BLE devices";
homepage = "https://github.com/Bluetooth-Devices/ruuvitag-ble";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}