python3Packages.mypy-boto3-s3: 1.19.0 -> 1.19.1

conduit-nginx
Fabian Affolter 2021-10-22 09:05:34 +02:00
parent 22e732d03c
commit efa15563be
1 changed files with 8 additions and 4 deletions

View File

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