{ lib, buildPythonPackage, fetchFromGitHub, importlib-resources, pytestCheckHook, setuptools, typing-extensions, }: buildPythonPackage rec { pname = "typeshed-client"; version = "2.8.2"; pyproject = true; src = fetchFromGitHub { owner = "JelleZijlstra"; repo = "typeshed_client"; tag = "v${version}"; hash = "sha256-+muWm2/Psp8V1n7mEloc+ltuwHG/uRvDUgSFRNzz5EQ="; }; build-system = [ setuptools ]; dependencies = [ importlib-resources typing-extensions ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "typeshed_client" ]; enabledTestPaths = [ "tests/test.py" ]; meta = { description = "Retrieve information from typeshed and other typing stubs"; homepage = "https://github.com/JelleZijlstra/typeshed_client"; changelog = "https://github.com/JelleZijlstra/typeshed_client/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = [ ]; }; }