2025-04-23 09:16:28 +02:00

40 lines
775 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pythonOlder,
types-awscrt,
typing-extensions,
}:
buildPythonPackage rec {
pname = "botocore-stubs";
version = "1.38.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "botocore_stubs";
inherit version;
hash = "sha256-waWcO0CSVxDtNR8ojN6OkoM7DDngGC5qZSDbL7+7VPo=";
};
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 ];
};
}