1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 pythonOlder,
7 types-awscrt,
8 typing-extensions,
9}:
10
11buildPythonPackage rec {
12 pname = "botocore-stubs";
13 version = "1.40.33";
14 pyproject = true;
15
16 disabled = pythonOlder "3.7";
17
18 src = fetchPypi {
19 pname = "botocore_stubs";
20 inherit version;
21 hash = "sha256-icUa4LKNnXn96MSXz5CN34cs4CfSc31NS6Rz/enNqoI=";
22 };
23
24 nativeBuildInputs = [ setuptools ];
25
26 propagatedBuildInputs = [
27 types-awscrt
28 typing-extensions
29 ];
30
31 pythonImportsCheck = [ "botocore-stubs" ];
32
33 meta = with lib; {
34 description = "Type annotations and code completion for botocore";
35 homepage = "https://pypi.org/project/botocore-stubs/";
36 license = licenses.mit;
37 maintainers = with maintainers; [ fab ];
38 };
39}