{ lib , buildPythonPackage , fetchPypi , types-futures }: buildPythonPackage rec { pname = "types-protobuf"; version = "4.24.0.20240129"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-ioPdO5t2oz4I2GNsXaohKs4TlkGO2Rg3Y1/NVkpiSJE="; }; 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 ]; }; }