a7848c7476
GitOrigin-RevId: 34ad3ffe08adfca17fcb4e4a47bb5f3b113687be
35 lines
759 B
Nix
35 lines
759 B
Nix
{ lib
|
|
, boto3
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mypy-boto3-s3";
|
|
version = "1.18.65";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "c5bdd595e088512df229863872fb91e825ab59ddd89653db5ccc37d666fa01d8";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
boto3
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
typing-extensions
|
|
];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "mypy_boto3_s3" ];
|
|
|
|
meta = with lib; {
|
|
description = "Type annotations for boto3";
|
|
homepage = "https://vemel.github.io/boto3_stubs_docs/mypy_boto3_s3/";
|
|
license = with licenses; [ bsd3 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|