Files
nixpkgs/pkgs/development/python-modules/botocore-stubs/default.nix
T
2026-01-31 21:36:44 +01:00

37 lines
735 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
types-awscrt,
typing-extensions,
}:
buildPythonPackage (finalAttrs: {
pname = "botocore-stubs";
version = "1.42.39";
pyproject = true;
src = fetchPypi {
pname = "botocore_stubs";
inherit (finalAttrs) version;
hash = "sha256-enUmXNWfuT/qSmoCrF6Qy7RNFPGCYnrVjbFCVpC8iD0=";
};
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 ];
};
})