python3Packages.mypy-boto3-s3: fix package metadata

As per <https://pypi.org/project/mypy-boto3-s3/>.
This commit is contained in:
Victor Engmark 2022-12-08 15:44:56 +13:00
parent c4d68c8bc2
commit 2341d8f150

View file

@ -11,7 +11,7 @@ buildPythonPackage rec {
version = "1.26.0.post1";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
@ -31,9 +31,9 @@ buildPythonPackage rec {
];
meta = with lib; {
description = "Type annotations for boto3";
homepage = "https://vemel.github.io/boto3_stubs_docs/mypy_boto3_s3/";
license = with licenses; [ bsd3 ];
description = "Type annotations for boto3.s3";
homepage = "https://github.com/youtype/mypy_boto3_builder";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}