File tree 1 file changed +9
-7
lines changed
pkgs/development/python-modules/aioboto3
1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 18
18
19
19
buildPythonPackage rec {
20
20
pname = "aioboto3" ;
21
- version = "12.3.0 " ;
21
+ version = "13.1.1 " ;
22
22
pyproject = true ;
23
23
24
24
disabled = pythonOlder "3.8" ;
@@ -27,31 +27,33 @@ buildPythonPackage rec {
27
27
owner = "terrycain" ;
28
28
repo = "aioboto3" ;
29
29
rev = "refs/tags/v${ version } " ;
30
- hash = "sha256-GDuxy/V+j0LRJ2lbcRHMEAga+pdCbYIWhEt3ItrHMB4 =" ;
30
+ hash = "sha256-g86RKQxTcfG1CIH3gfgn9Vl9JxUkeC1ztmLk4q/MVn0 =" ;
31
31
} ;
32
32
33
- nativeBuildInputs = [
33
+ build-system = [
34
34
poetry-core
35
35
poetry-dynamic-versioning
36
36
] ;
37
37
38
38
pythonRelaxDeps = [ "aiobotocore" ] ;
39
39
40
- propagatedBuildInputs = [ aiobotocore ] ++ aiobotocore . optional-dependencies . boto3 ;
40
+ dependencies = [
41
+ aiobotocore
42
+ aiofiles
43
+ ] ++ aiobotocore . optional-dependencies . boto3 ;
41
44
42
- passthru . optional-dependencies = {
45
+ optional-dependencies = {
43
46
chalice = [ chalice ] ;
44
47
s3cse = [ cryptography ] ;
45
48
} ;
46
49
47
50
nativeCheckInputs = [
48
- aiofiles
49
51
dill
50
52
moto
51
53
pytest-asyncio
52
54
pytestCheckHook
53
55
requests
54
- ] ++ lib . flatten ( builtins . attrValues passthru . optional-dependencies ) ;
56
+ ] ++ lib . flatten ( builtins . attrValues optional-dependencies ) ;
55
57
56
58
pythonImportsCheck = [ "aioboto3" ] ;
57
59
You can’t perform that action at this time.
0 commit comments