{ lib , buildPythonPackage , fetchPypi }: buildPythonPackage rec { pname = "types-setuptools"; version = "57.4.14"; format = "setuptools"; src = fetchPypi { inherit pname version; sha256 = "sha256-3wL+HdJE9Yz05nz8PQqXkwotYact2J8h2BxxAXzYP5o="; }; # 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 ]; }; }