Files
nixpkgs/pkgs/development/python-modules/botocore-stubs/default.nix
T
2026-01-06 01:26:18 +01:00

37 lines
726 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
types-awscrt,
typing-extensions,
}:
buildPythonPackage rec {
pname = "botocore-stubs";
version = "1.42.22";
pyproject = true;
src = fetchPypi {
pname = "botocore_stubs";
inherit version;
hash = "sha256-4NxZwBTMtYlvrCXNy0z7c3DQLgh3yxWUnE/Wmmd0o1g=";
};
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 ];
};
}