summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/hap-python/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/hap-python/default.nix')
-rw-r--r--pkgs/development/python-modules/hap-python/default.nix38
1 files changed, 18 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/hap-python/default.nix b/pkgs/development/python-modules/hap-python/default.nix
index 0bb7f35e288f..97b5c1f480e3 100644
--- a/pkgs/development/python-modules/hap-python/default.nix
+++ b/pkgs/development/python-modules/hap-python/default.nix
@@ -1,18 +1,19 @@
-{ lib
-, async-timeout
-, buildPythonPackage
-, base36
-, chacha20poly1305-reuseable
-, cryptography
-, fetchFromGitHub
-, h11
-, orjson
-, pyqrcode
-, pytest-asyncio
-, pytest-timeout
-, pytestCheckHook
-, pythonOlder
-, zeroconf
+{
+ lib,
+ async-timeout,
+ buildPythonPackage,
+ base36,
+ chacha20poly1305-reuseable,
+ cryptography,
+ fetchFromGitHub,
+ h11,
+ orjson,
+ pyqrcode,
+ pytest-asyncio,
+ pytest-timeout,
+ pytestCheckHook,
+ pythonOlder,
+ zeroconf,
}:
buildPythonPackage rec {
@@ -47,8 +48,7 @@ buildPythonPackage rec {
pytest-asyncio
pytest-timeout
pytestCheckHook
- ]
- ++ passthru.optional-dependencies.QRCode;
+ ] ++ passthru.optional-dependencies.QRCode;
disabledTestPaths = [
# Disable tests requiring network access
@@ -67,9 +67,7 @@ buildPythonPackage rec {
"test_migration_to_include_client_properties"
];
- pythonImportsCheck = [
- "pyhap"
- ];
+ pythonImportsCheck = [ "pyhap" ];
meta = with lib; {
description = "HomeKit Accessory Protocol implementation";