1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 poetry-core,
6 botocore,
7}:
8
9buildPythonPackage rec {
10 pname = "aws-error-utils";
11 version = "2.7.0";
12 pyproject = true;
13
14 src = fetchPypi {
15 pname = "aws_error_utils";
16 inherit version;
17 hash = "sha256-BxB68qLCZwbNlSW3/77UPy0HtQ0n45+ekVbBGy6ZPJc=";
18 };
19
20 build-system = [
21 poetry-core
22 ];
23
24 dependencies = [
25 botocore
26 ];
27
28 pythonImportsCheck = [
29 "aws_error_utils"
30 ];
31
32 meta = {
33 description = "Error-handling functions for boto3/botocore";
34 homepage = "https://pypi.org/project/aws-error-utils/";
35 license = lib.licenses.asl20;
36 maintainers = with lib.maintainers; [ cterence ];
37 };
38}