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