Files
nixpkgs/pkgs/development/python-modules/botocore-stubs/default.nix
T
2024-07-31 21:47:26 +02:00

40 lines
779 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
pythonOlder,
types-awscrt,
typing-extensions,
}:
buildPythonPackage rec {
pname = "botocore-stubs";
version = "1.34.151";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "botocore_stubs";
inherit version;
hash = "sha256-Z18h7+8NjFM3AedEn3Zf0SC2J+gKjO1BuvxDw04CG+U=";
};
nativeBuildInputs = [ poetry-core ];
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 ];
};
}