I'm using a third-party package (in this case jsonrpcserver though this problem could apply to other packages) that is fully type-aware, and even includes a py.typed file in its sources.
However, due to a packaging bug, the py.typed file is not installed.
As a result, mypy insists
error: Skipping analyzing 'jsonrpcserver.response': found module but no type hints or library stubs
Even though I can say for a fact that the module does have type hints. Is there a way I can force mypy to analyze this package even if it's missing the py.typed? I shouldn't have to create a stub library for this purpose since the package is otherwise type-aware.