mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
37 lines
728 B
Nix
37 lines
728 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
types-awscrt,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "botocore-stubs";
|
|
version = "1.40.69";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "botocore_stubs";
|
|
inherit version;
|
|
hash = "sha256-MdG7mlFA35uoPW1NZraJmHZyeYUN5Q4oyq3jFSRLCng=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|