python3Packages.ibeacon-ble: 0.7.4 -> 1.0.1

This commit is contained in:
Martin Weinelt 2022-11-05 12:30:48 +01:00
parent a975823d5b
commit 35b0503fec

View file

@ -1,7 +1,9 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, home-assistant-bluetooth
, mac-vendor-lookup
, poetry-core
, pytestCheckHook
, pythonOlder
@ -9,7 +11,7 @@
buildPythonPackage rec {
pname = "ibeacon-ble";
version = "0.7.4";
version = "1.0.1";
format = "pyproject";
disabled = pythonOlder "3.9";
@ -18,26 +20,28 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "v${version}";
hash = "sha256-B+ftS/oNCECjCqB396K5iCl0aeJSBGVXshlvZ1kvEuo=";
hash = "sha256-iYgGflM0IpSIMNgPpJAFAl9FYoMfRinM3sP6VRcBSMc=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=ibeacon_ble --cov-report=term-missing:skip-covered" ""
'';
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
aiohttp
home-assistant-bluetooth
mac-vendor-lookup
];
checkInputs = [
pytestCheckHook
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=ibeacon_ble --cov-report=term-missing:skip-covered" ""
'';
pythonImportsCheck = [
"ibeacon_ble"
];