12 buildPythonPackage rec {
13 pname = "typeshed-client";
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
20 owner = "JelleZijlstra";
21 repo = "typeshed_client";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-dEfKZ930Jxa84HUqKpsL2JWQLeeWx6gIMtFHTbiw3Es=";
26 build-system = [ setuptools ];
33 nativeCheckInputs = [ pytestCheckHook ];
35 pythonImportsCheck = [ "typeshed_client" ];
37 pytestFlagsArray = [ "tests/test.py" ];
40 description = "Retrieve information from typeshed and other typing stubs";
41 homepage = "https://github.com/JelleZijlstra/typeshed_client";
42 changelog = "https://github.com/JelleZijlstra/typeshed_client/releases/tag/v${version}";
43 license = licenses.mit;