{ lib , buildPythonPackage , fetchPypi , types-futures }: buildPythonPackage rec { pname = "types-protobuf"; version = "3.18.2"; format = "setuptools"; src = fetchPypi { inherit pname version; sha256 = "sha256-yiHe3+d1msvrDNj1xyp0/zxAmuDAe8HZTv9RI6wPojw="; }; 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 ]; }; }