9 buildPythonPackage rec {
10 pname = "docstring-to-markdown";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
19 rev = "refs/tags/v${version}";
20 hash = "sha256-ykqY7LFIOTuAddYkKDzIltq8FpLVz4v2ZA3Y0cZH9ms=";
24 sed -i -E '/--(cov|flake8)/d' setup.cfg
27 nativeCheckInputs = [ pytestCheckHook ];
29 pythonImportsCheck = [ "docstring_to_markdown" ];
32 homepage = "https://github.com/python-lsp/docstring-to-markdown";
33 description = "On the fly conversion of Python docstrings to markdown";
34 changelog = "https://github.com/python-lsp/docstring-to-markdown/releases/tag/v${version}";
35 license = licenses.lgpl2Plus;
36 maintainers = with maintainers; [ doronbehar ];