summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyindego/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyindego/default.nix')
-rw-r--r--pkgs/development/python-modules/pyindego/default.nix37
1 files changed, 17 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/pyindego/default.nix b/pkgs/development/python-modules/pyindego/default.nix
index b83aa414bc8c..98e5e3ba6ee6 100644
--- a/pkgs/development/python-modules/pyindego/default.nix
+++ b/pkgs/development/python-modules/pyindego/default.nix
@@ -1,20 +1,21 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
-# build-system
-, setuptools
+ # build-system
+ setuptools,
-# dependencies
-, aiohttp
-, requests
-, pytz
+ # dependencies
+ aiohttp,
+ requests,
+ pytz,
-# tests
-, mock
-, pytest-aiohttp
-, pytest-asyncio
-, pytestCheckHook
+ # tests
+ mock,
+ pytest-aiohttp,
+ pytest-asyncio,
+ pytestCheckHook,
}:
buildPythonPackage rec {
@@ -28,9 +29,7 @@ buildPythonPackage rec {
hash = "sha256-lRDi6qYMaPI8SiSNe0vzlKb92axujt44aei8opNPDug=";
};
- build-system = [
- setuptools
- ];
+ build-system = [ setuptools ];
dependencies = [
aiohttp
@@ -52,9 +51,7 @@ buildPythonPackage rec {
"test_update_battery"
];
- pythonImportsCheck = [
- "pyIndego"
- ];
+ pythonImportsCheck = [ "pyIndego" ];
meta = with lib; {
description = "Python interface for Bosch API for lawnmowers";