python310Packages.thermopro-ble: init at 0.4.0

This commit is contained in:
Fabian Affolter
2022-08-26 09:17:19 +02:00
parent 8ab89c7196
commit b1dbcccb23
2 changed files with 55 additions and 0 deletions
@@ -0,0 +1,53 @@
{ lib
, bluetooth-sensor-state-data
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pythonOlder
, sensor-state-data
}:
buildPythonPackage rec {
pname = "thermopro-ble";
version = "0.4.0";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "bluetooth-devices";
repo = pname;
rev = "v${version}";
hash = "sha256-YVSJG+H4kUMrsVUBNjW67V2s/ziYH6RzQIk6CvMfRfg=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
bluetooth-sensor-state-data
sensor-state-data
];
checkInputs = [
pytestCheckHook
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=thermopro_ble --cov-report=term-missing:skip-covered" ""
'';
pythonImportsCheck = [
"thermopro_ble"
];
meta = with lib; {
description = "Library for Thermopro BLE devices";
homepage = "https://github.com/bluetooth-devices/thermopro-ble";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -10807,6 +10807,8 @@ in {
thermobeacon-ble = callPackage ../development/python-modules/thermobeacon-ble { };
thermopro-ble = callPackage ../development/python-modules/thermopro-ble { };
thespian = callPackage ../development/python-modules/thespian { };
thinc = callPackage ../development/python-modules/thinc {