Files
nixpkgs/pkgs/development/python-modules/botocore-stubs/default.nix
T
2026-01-07 10:54:48 +01:00

37 lines
726 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
types-awscrt,
typing-extensions,
}:
buildPythonPackage rec {
pname = "botocore-stubs";
version = "1.42.23";
pyproject = true;
src = fetchPypi {
pname = "botocore_stubs";
inherit version;
hash = "sha256-U4jpi+1dNU6Eh3LvBQr+urTHqmTva3qpwDBmyP6crO4=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
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 ];
};
}