tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
awslimitchecker: format with nixfmt
Fabian Affolter
2 years ago
f747fb39
9e9aa732
+6
-9
1 changed file
expand all
collapse all
unified
split
pkgs
tools
admin
awslimitchecker
default.nix
+6
-9
pkgs/tools/admin/awslimitchecker/default.nix
···
1
1
-
{ lib
2
2
-
, fetchFromGitHub
3
3
-
, python3
1
1
+
{
2
2
+
lib,
3
3
+
fetchFromGitHub,
4
4
+
python3,
4
5
}:
5
6
6
7
python3.pkgs.buildPythonApplication rec {
···
20
21
./version.patch
21
22
];
22
23
23
23
-
build-system = with python3.pkgs; [
24
24
-
setuptools
25
25
-
];
24
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
54
-
pythonImportsCheck = [
55
55
-
"awslimitchecker.checker"
56
56
-
];
53
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";