python310Packages.thermobeacon-ble: init at 0.3.1

This commit is contained in:
Fabian Affolter 2022-08-26 08:51:53 +02:00
parent fb570e9074
commit c74e976d73
2 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,55 @@
{ lib
, bluetooth-data-tools
, bluetooth-sensor-state-data
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pythonOlder
, sensor-state-data
}:
buildPythonPackage rec {
pname = "thermobeacon-ble";
version = "0.3.1";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "bluetooth-devices";
repo = pname;
rev = "v${version}";
hash = "sha256-OvSvhOcJSThKyLXHhiwEZtCrYt6+KB5iArUKjfoi2OI=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
bluetooth-data-tools
bluetooth-sensor-state-data
sensor-state-data
];
checkInputs = [
pytestCheckHook
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=thermobeacon_ble --cov-report=term-missing:skip-covered" ""
'';
pythonImportsCheck = [
"thermobeacon_ble"
];
meta = with lib; {
description = "Library for Thermobeacon BLE devices";
homepage = "https://github.com/bluetooth-devices/thermobeacon-ble";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -10805,6 +10805,8 @@ in {
cudnnSupport = false;
};
thermobeacon-ble = callPackage ../development/python-modules/thermobeacon-ble { };
thespian = callPackage ../development/python-modules/thespian { };
thinc = callPackage ../development/python-modules/thinc {