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