summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/freebox-api/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/freebox-api/default.nix')
-rw-r--r--pkgs/development/python-modules/freebox-api/default.nix31
1 files changed, 13 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/freebox-api/default.nix b/pkgs/development/python-modules/freebox-api/default.nix
index cb56a789deda..a5fa4fe5746f 100644
--- a/pkgs/development/python-modules/freebox-api/default.nix
+++ b/pkgs/development/python-modules/freebox-api/default.nix
@@ -1,12 +1,13 @@
-{ lib
-, aiohttp
-, buildPythonPackage
-, fetchFromGitHub
-, poetry-core
-, pytestCheckHook
-, pythonOlder
-, pythonRelaxDepsHook
-, urllib3
+{
+ lib,
+ aiohttp,
+ buildPythonPackage,
+ fetchFromGitHub,
+ poetry-core,
+ pytestCheckHook,
+ pythonOlder,
+ pythonRelaxDepsHook,
+ urllib3,
}:
buildPythonPackage rec {
@@ -28,22 +29,16 @@ buildPythonPackage rec {
pythonRelaxDepsHook
];
- pythonRelaxDeps = [
- "urllib3"
- ];
+ pythonRelaxDeps = [ "urllib3" ];
propagatedBuildInputs = [
aiohttp
urllib3
];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "freebox_api"
- ];
+ pythonImportsCheck = [ "freebox_api" ];
meta = with lib; {
description = "Python module to interact with the Freebox OS API";