about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-05-02 09:14:13 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-05-02 09:14:13 +0200
commita204e783155e72a0d5ff05b4ecb27d48d3fd269a (patch)
tree8622adb23328f672a465d4393d483ef7dd85b8a6
parentf04c85f1c09767670909a5c749c9bc1b4e3bb7ff (diff)
downloadnixlib-a204e783155e72a0d5ff05b4ecb27d48d3fd269a.tar
nixlib-a204e783155e72a0d5ff05b4ecb27d48d3fd269a.tar.gz
nixlib-a204e783155e72a0d5ff05b4ecb27d48d3fd269a.tar.bz2
nixlib-a204e783155e72a0d5ff05b4ecb27d48d3fd269a.tar.lz
nixlib-a204e783155e72a0d5ff05b4ecb27d48d3fd269a.tar.xz
nixlib-a204e783155e72a0d5ff05b4ecb27d48d3fd269a.tar.zst
nixlib-a204e783155e72a0d5ff05b4ecb27d48d3fd269a.zip
python312Packages.aiomysensors: format with nixfmt
-rw-r--r--pkgs/development/python-modules/aiomysensors/default.nix35
1 files changed, 16 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/aiomysensors/default.nix b/pkgs/development/python-modules/aiomysensors/default.nix
index 14d9a0c89dde..5e3ca5a6089e 100644
--- a/pkgs/development/python-modules/aiomysensors/default.nix
+++ b/pkgs/development/python-modules/aiomysensors/default.nix
@@ -1,16 +1,17 @@
-{ lib
-, aiofiles
-, asyncio-mqtt
-, awesomeversion
-, buildPythonPackage
-, click
-, fetchFromGitHub
-, marshmallow
-, poetry-core
-, pyserial-asyncio
-, pytest-asyncio
-, pytestCheckHook
-, pythonOlder
+{
+  lib,
+  aiofiles,
+  asyncio-mqtt,
+  awesomeversion,
+  buildPythonPackage,
+  click,
+  fetchFromGitHub,
+  marshmallow,
+  poetry-core,
+  pyserial-asyncio,
+  pytest-asyncio,
+  pytestCheckHook,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
@@ -32,9 +33,7 @@ buildPythonPackage rec {
       --replace-fail " --cov=src --cov-report=term-missing:skip-covered" ""
   '';
 
-  build-system = [
-    poetry-core
-  ];
+  build-system = [ poetry-core ];
 
   dependencies = [
     aiofiles
@@ -50,9 +49,7 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
-  pythonImportsCheck = [
-    "aiomysensors"
-  ];
+  pythonImportsCheck = [ "aiomysensors" ];
 
   meta = with lib; {
     description = "Library to connect to MySensors gateways";