python310Packages.inkbird-ble: init at 0.5.2
This commit is contained in:
parent
02992588de
commit
55a87a6d22
2 changed files with 57 additions and 0 deletions
55
pkgs/development/python-modules/inkbird-ble/default.nix
Normal file
55
pkgs/development/python-modules/inkbird-ble/default.nix
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
{ lib
|
||||||
|
, bluetooth-sensor-state-data
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, home-assistant-bluetooth
|
||||||
|
, poetry-core
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, sensor-state-data
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "inkbird-ble";
|
||||||
|
version = "0.5.2";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.9";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Bluetooth-Devices";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-ieVjgNCkU6AJDTgLzmn2YPCNm+kId65QW3SNu2Xou1Q=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
poetry-core
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
bluetooth-sensor-state-data
|
||||||
|
home-assistant-bluetooth
|
||||||
|
sensor-state-data
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace pyproject.toml \
|
||||||
|
--replace " --cov=inkbird_ble --cov-report=term-missing:skip-covered" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"inkbird_ble"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Library for Inkbird BLE devices";
|
||||||
|
homepage = "https://github.com/Bluetooth-Devices/inkbird-ble";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4352,6 +4352,8 @@ in {
|
||||||
|
|
||||||
injector = callPackage ../development/python-modules/injector { };
|
injector = callPackage ../development/python-modules/injector { };
|
||||||
|
|
||||||
|
inkbird-ble = callPackage ../development/python-modules/inkbird-ble { };
|
||||||
|
|
||||||
inkex = callPackage ../development/python-modules/inkex { };
|
inkex = callPackage ../development/python-modules/inkex { };
|
||||||
|
|
||||||
inotify = callPackage ../development/python-modules/inotify { };
|
inotify = callPackage ../development/python-modules/inotify { };
|
||||||
|
|
Loading…
Reference in a new issue