43 lines
1 KiB
Nix
43 lines
1 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
poetry-core,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "sensor-state-data";
|
||
|
version = "2.18.1";
|
||
|
format = "pyproject";
|
||
|
|
||
|
disabled = pythonOlder "3.9";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Bluetooth-Devices";
|
||
|
repo = pname;
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-9GdBKUhueis8pnQP5ZNxvEyRXVGINTueVzLOR4xx5mU=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ poetry-core ];
|
||
|
|
||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace pyproject.toml \
|
||
|
--replace " --cov=sensor_state_data --cov-report=term-missing:skip-covered" ""
|
||
|
'';
|
||
|
|
||
|
pythonImportsCheck = [ "sensor_state_data" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Models for storing and converting Sensor Data state";
|
||
|
homepage = "https://github.com/bluetooth-devices/sensor-state-data";
|
||
|
changelog = "https://github.com/Bluetooth-Devices/sensor-state-data/releases/tag/v${version}";
|
||
|
license = with licenses; [ asl20 ];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|