Merge pull request #244898 from fabaff/mypy-boto3-s3-bump

python311Packages.mypy-boto3-s3: 1.28.3.post2 -> 1.28.8
This commit is contained in:
Mario Rodas 2023-07-23 10:20:38 -05:00 committed by GitHub
commit 92847c019e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,18 +8,19 @@
buildPythonPackage rec {
pname = "mypy-boto3-s3";
version = "1.28.3.post2";
version = "1.28.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-wjt4ArgKA4ihRtfoAlVS8h1E40kCahj7dR2caY7XFLE=";
hash = "sha256-ye0X/uLA4u3rKWazeWr3s0ncxO7uVNvVmiaf25QY61U=";
};
propagatedBuildInputs = [
boto3
] ++ lib.optionals (pythonOlder "3.9") [
typing-extensions
];
@ -33,6 +34,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Type annotations for boto3.s3";
homepage = "https://github.com/youtype/mypy_boto3_builder";
changelog = "https://github.com/youtype/mypy_boto3_builder/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};