diff options
Diffstat (limited to 'pkgs/development/python-modules/ibeacon-ble/default.nix')
-rw-r--r-- | pkgs/development/python-modules/ibeacon-ble/default.nix | 33 |
1 files changed, 14 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/ibeacon-ble/default.nix b/pkgs/development/python-modules/ibeacon-ble/default.nix index acbc955f1089..e0f9fc682355 100644 --- a/pkgs/development/python-modules/ibeacon-ble/default.nix +++ b/pkgs/development/python-modules/ibeacon-ble/default.nix @@ -1,13 +1,14 @@ -{ lib -, aiohttp -, aiooui -, buildPythonPackage -, fetchFromGitHub -, home-assistant-bluetooth -, mac-vendor-lookup -, poetry-core -, pytestCheckHook -, pythonOlder +{ + lib, + aiohttp, + aiooui, + buildPythonPackage, + fetchFromGitHub, + home-assistant-bluetooth, + mac-vendor-lookup, + poetry-core, + pytestCheckHook, + pythonOlder, }: buildPythonPackage rec { @@ -29,9 +30,7 @@ buildPythonPackage rec { --replace-fail " --cov=ibeacon_ble --cov-report=term-missing:skip-covered" "" ''; - nativeBuildInputs = [ - poetry-core - ]; + nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ aiohttp @@ -40,13 +39,9 @@ buildPythonPackage rec { mac-vendor-lookup ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "ibeacon_ble" - ]; + pythonImportsCheck = [ "ibeacon_ble" ]; meta = with lib; { description = "Library for iBeacon BLE devices"; |