nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 types-awscrt,
7 typing-extensions,
8}:
9
10buildPythonPackage (finalAttrs: {
11 pname = "botocore-stubs";
12 version = "1.42.41";
13 pyproject = true;
14
15 src = fetchPypi {
16 pname = "botocore_stubs";
17 inherit (finalAttrs) version;
18 hash = "sha256-2+rC90Tfa4FM6D7D83d7KZoBXL6lei78QcM7jDgmWCU=";
19 };
20
21 build-system = [ setuptools ];
22
23 dependencies = [
24 types-awscrt
25 typing-extensions
26 ];
27
28 pythonImportsCheck = [ "botocore-stubs" ];
29
30 meta = {
31 description = "Type annotations and code completion for botocore";
32 homepage = "https://pypi.org/project/botocore-stubs/";
33 license = lib.licenses.mit;
34 maintainers = with lib.maintainers; [ fab ];
35 };
36})