{ lib, buildPythonPackage, fetchPypi, setuptools, types-awscrt, typing-extensions, }: buildPythonPackage rec { pname = "botocore-stubs"; version = "1.40.69"; pyproject = true; src = fetchPypi { pname = "botocore_stubs"; inherit version; hash = "sha256-MdG7mlFA35uoPW1NZraJmHZyeYUN5Q4oyq3jFSRLCng="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ types-awscrt typing-extensions ]; pythonImportsCheck = [ "botocore-stubs" ]; meta = with lib; { description = "Type annotations and code completion for botocore"; homepage = "https://pypi.org/project/botocore-stubs/"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }