about summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-04-23 09:39:03 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-04-23 09:39:03 +0200
commitf747fb392392211fbecec1b28078e609002dcfc8 (patch)
tree0719eecc1fedbd42501bd372329b802a756ce3b6 /pkgs/tools/admin
parent9e9aa732af490e43662e30e9872b569a10c3e2ed (diff)
awslimitchecker: format with nixfmt
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/awslimitchecker/default.nix15
1 files changed, 6 insertions, 9 deletions
diff --git a/pkgs/tools/admin/awslimitchecker/default.nix b/pkgs/tools/admin/awslimitchecker/default.nix
index e3d4c9fb62639..760a6f1e67d0e 100644
--- a/pkgs/tools/admin/awslimitchecker/default.nix
+++ b/pkgs/tools/admin/awslimitchecker/default.nix
@@ -1,6 +1,7 @@
-{ lib
-, fetchFromGitHub
-, python3
+{
+  lib,
+  fetchFromGitHub,
+  python3,
 }:
 
 python3.pkgs.buildPythonApplication rec {
@@ -20,9 +21,7 @@ python3.pkgs.buildPythonApplication rec {
     ./version.patch
   ];
 
-  build-system = with python3.pkgs; [
-    setuptools
-  ];
+  build-system = with python3.pkgs; [ setuptools ];
 
   dependencies = with python3.pkgs; [
     boto3
@@ -51,9 +50,7 @@ python3.pkgs.buildPythonApplication rec {
     "awslimitchecker/tests/test_version.py"
   ];
 
-  pythonImportsCheck = [
-    "awslimitchecker.checker"
-  ];
+  pythonImportsCheck = [ "awslimitchecker.checker" ];
 
   meta = with lib; {
     description = "A script and python package to check your AWS service limits and usage via boto3";