Files
nixpkgs/pkgs/development/python-modules/botocore-stubs/default.nix
T
2026-02-03 22:40:11 +01:00

37 lines
735 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
types-awscrt,
typing-extensions,
}:
buildPythonPackage (finalAttrs: {
pname = "botocore-stubs";
version = "1.42.41";
pyproject = true;
src = fetchPypi {
pname = "botocore_stubs";
inherit (finalAttrs) version;
hash = "sha256-2+rC90Tfa4FM6D7D83d7KZoBXL6lei78QcM7jDgmWCU=";
};
build-system = [ setuptools ];
dependencies = [
types-awscrt
typing-extensions
];
pythonImportsCheck = [ "botocore-stubs" ];
meta = {
description = "Type annotations and code completion for botocore";
homepage = "https://pypi.org/project/botocore-stubs/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
})