{ lib , buildPythonPackage , fetchPypi , types-futures }: buildPythonPackage rec { pname = "types-protobuf"; version = "3.19.15"; format = "setuptools"; src = fetchPypi { inherit pname version; sha256 = "sha256-03HQpbMueMLWhDKaXUSR04Xm6tyrSXs3xBFy3tMoxdk="; }; propagatedBuildInputs = [ types-futures ]; # Module doesn't have tests doCheck = false; pythonImportsCheck = [ "google-stubs" ]; meta = with lib; { description = "Typing stubs for protobuf"; homepage = "https://github.com/python/typeshed"; license = licenses.asl20; maintainers = with maintainers; [ andersk ]; }; }