1{ lib
2, boto3
3, buildPythonPackage
4, fetchPypi
5, pythonOlder
6, typing-extensions
7}:
8
9buildPythonPackage rec {
10 pname = "mypy-boto3-s3";
11 version = "1.26.0.post1";
12 format = "setuptools";
13
14 disabled = pythonOlder "3.6";
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-bXB5+Mc53Jk8vtrQc2KZxBOyl4FLc3laOFWnkWnsyTg=";
19 };
20
21 propagatedBuildInputs = [
22 boto3
23 typing-extensions
24 ];
25
26 # Project has no tests
27 doCheck = false;
28
29 pythonImportsCheck = [
30 "mypy_boto3_s3"
31 ];
32
33 meta = with lib; {
34 description = "Type annotations for boto3";
35 homepage = "https://vemel.github.io/boto3_stubs_docs/mypy_boto3_s3/";
36 license = with licenses; [ bsd3 ];
37 maintainers = with maintainers; [ fab ];
38 };
39}