{ lib, buildPythonPackage, fetchPypi, setuptools, }: buildPythonPackage rec { pname = "types-docutils"; version = "0.21.0.20240423"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-dxbsbGi1F5t7oXOMrOLxMm5k359Et6sI2ZBNMsI/wV8="; }; build-system = [ setuptools ]; # Module doesn't have tests doCheck = false; pythonImportsCheck = [ "docutils-stubs" ]; meta = with lib; { description = "Typing stubs for docutils"; homepage = "https://github.com/python/typeshed"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }