{ lib , buildPythonPackage , fetchPypi }: buildPythonPackage rec { pname = "types-setuptools"; version = "68.2.0.2"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-Ce/DgK1cf3jjC8oVRvcGRpVozyYITPq3Ps+D3qHShEY="; }; # Module doesn't have tests doCheck = false; pythonImportsCheck = [ "setuptools-stubs" ]; meta = with lib; { description = "Typing stubs for setuptools"; homepage = "https://github.com/python/typeshed"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }