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