Unverified Commit 92847c01 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

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

python311Packages.mypy-boto3-s3: 1.28.3.post2 -> 1.28.8
parents 10066519 678cfbca
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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 ];
  };