Merge pull request #251387 from fabaff/botocore-stubs

python311Packages.types-awscrt: init at 0.19.0, python311Packages.botocore-stubs: init at 1.31.34

authored by

Fabian Affolter and committed by
GitHub
7f2d93dd 6b4a8998

+82
+42
pkgs/development/python-modules/botocore-stubs/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , poetry-core 5 + , pythonOlder 6 + , types-awscrt 7 + , typing-extensions 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "botocore-stubs"; 12 + version = "1.31.34"; 13 + format = "pyproject"; 14 + 15 + disabled = pythonOlder "3.7"; 16 + 17 + src = fetchPypi { 18 + pname = "botocore_stubs"; 19 + inherit version; 20 + hash = "sha256-7HQvhmNqzyeHIgCYf+IGi6X7kmbOBBcKkOomtpjhVlQ="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + poetry-core 25 + ]; 26 + 27 + propagatedBuildInputs = [ 28 + types-awscrt 29 + typing-extensions 30 + ]; 31 + 32 + pythonImportsCheck = [ 33 + "botocore-stubs" 34 + ]; 35 + 36 + meta = with lib; { 37 + description = "Type annotations and code completion for botocore"; 38 + homepage = "https://pypi.org/project/botocore-stubs/"; 39 + license = licenses.mit; 40 + maintainers = with maintainers; [ fab ]; 41 + }; 42 + }
+36
pkgs/development/python-modules/types-awscrt/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , poetry-core 5 + , pythonOlder 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "types-awscrt"; 10 + version = "0.19.0"; 11 + format = "pyproject"; 12 + 13 + disabled = pythonOlder "3.7"; 14 + 15 + src = fetchPypi { 16 + pname = "types_awscrt"; 17 + inherit version; 18 + hash = "sha256-6u9gQiz3FrSuIW8WS3TWecgrDZxT2zgKN96ymuVXmxs="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + poetry-core 23 + ]; 24 + 25 + pythonImportsCheck = [ 26 + "awscrt-stubs" 27 + ]; 28 + 29 + meta = with lib; { 30 + description = "Type annotations and code completion for awscrt"; 31 + homepage = "https://github.com/youtype/types-awscrt"; 32 + changelog = "https://github.com/youtype/types-awscrt/releases/tag/${version}"; 33 + license = licenses.mit; 34 + maintainers = with maintainers; [ fab ]; 35 + }; 36 + }
+4
pkgs/top-level/python-packages.nix
··· 1525 1525 1526 1526 botocore = callPackage ../development/python-modules/botocore { }; 1527 1527 1528 + botocore-stubs = callPackage ../development/python-modules/botocore-stubs { }; 1529 + 1528 1530 botorch = callPackage ../development/python-modules/botorch { }; 1529 1531 1530 1532 bottle = callPackage ../development/python-modules/bottle { }; ··· 13117 13119 typer = callPackage ../development/python-modules/typer { }; 13118 13120 13119 13121 types-appdirs = callPackage ../development/python-modules/types-appdirs { }; 13122 + 13123 + types-awscrt = callPackage ../development/python-modules/types-awscrt { }; 13120 13124 13121 13125 types-beautifulsoup4 = callPackage ../development/python-modules/types-beautifulsoup4 { }; 13122 13126