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

python3Packages.mypy-boto3-s3: 1.19.0 -> 1.19.1
conduit-nginx
Fabian Affolter 2021-10-22 13:53:51 +02:00 committed by GitHub
commit 5971426367
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 4 deletions

View File

@ -8,23 +8,27 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "mypy-boto3-s3"; pname = "mypy-boto3-s3";
version = "1.19.0"; version = "1.19.1";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-VCQmtpoemK91+tkPE6HrdFt3wPYrlPcR0CVn7uo2vp0="; sha256 = "sha256-Ov3JVCYa+3VU26VYtPYcqwSUMdDowSk8GWGt4PX/DKk=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
boto3 boto3
] ++ lib.optionals (pythonOlder "3.8") [ ] ++ lib.optionals (pythonOlder "3.9") [
typing-extensions typing-extensions
]; ];
# Project has no tests # Project has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "mypy_boto3_s3" ];
pythonImportsCheck = [
"mypy_boto3_s3"
];
meta = with lib; { meta = with lib; {
description = "Type annotations for boto3"; description = "Type annotations for boto3";