lol

awslimitchecker: format with nixfmt

+6 -9
+6 -9
pkgs/tools/admin/awslimitchecker/default.nix
··· 1 - { lib 2 - , fetchFromGitHub 3 - , python3 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + python3, 4 5 }: 5 6 6 7 python3.pkgs.buildPythonApplication rec { ··· 20 21 ./version.patch 21 22 ]; 22 23 23 - build-system = with python3.pkgs; [ 24 - setuptools 25 - ]; 24 + build-system = with python3.pkgs; [ setuptools ]; 26 25 27 26 dependencies = with python3.pkgs; [ 28 27 boto3 ··· 51 50 "awslimitchecker/tests/test_version.py" 52 51 ]; 53 52 54 - pythonImportsCheck = [ 55 - "awslimitchecker.checker" 56 - ]; 53 + pythonImportsCheck = [ "awslimitchecker.checker" ]; 57 54 58 55 meta = with lib; { 59 56 description = "A script and python package to check your AWS service limits and usage via boto3";