Files
nixpkgs/pkgs/development/python-modules/botocore-stubs/default.nix
T
2025-12-02 16:11:57 +01:00

37 lines
727 B
Nix

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