python311Packages.sensirion-ble: init at 0.1.0

This commit is contained in:
Fabian Affolter 2023-06-09 22:52:29 +02:00
parent a175ac6ba8
commit f2a6152b15
2 changed files with 54 additions and 0 deletions

View file

@ -0,0 +1,52 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, bluetooth-data-tools
, bluetooth-sensor-state-data
, home-assistant-bluetooth
, sensor-state-data
, pythonOlder
}:
buildPythonPackage rec {
pname = "sensirion-ble";
version = "0.1.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "akx";
repo = "sensirion-ble";
rev = "refs/tags/v${version}";
hash = "sha256-7l76/Bci1ztt2CfwytLOySK6IL8IDijpB0AYhksRP7o=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=sensirion_ble --cov-report=term-missing:skip-covered" ""
'';
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
bluetooth-data-tools
bluetooth-sensor-state-data
home-assistant-bluetooth
sensor-state-data
];
pythonImportsCheck = [
"sensirion_ble"
];
meta = with lib; {
description = "Parser for Sensirion BLE devices";
homepage = "https://github.com/akx/sensirion-ble";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -11040,6 +11040,8 @@ self: super: with self; {
sense-energy = callPackage ../development/python-modules/sense-energy { };
sensirion-ble = callPackage ../development/python-modules/sensirion-ble { };
sensor-state-data = callPackage ../development/python-modules/sensor-state-data { };
sensorpro-ble = callPackage ../development/python-modules/sensorpro-ble { };