{ lib , buildPythonPackage , fetchFromGitHub , fpyutils , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "md-toc"; version = "8.1.0"; format = "setuptools"; disabled = pythonOlder "3.5"; src = fetchFromGitHub { owner = "frnmst"; repo = pname; rev = version; sha256 = "sha256-FTvHPV/QIpKRF7wcZ6yuik4GzPrwyg4Oxc5/cdCs6Qo="; }; propagatedBuildInputs = [ fpyutils ]; checkInputs = [ pytestCheckHook ]; pytestFlagsArray = [ "md_toc/tests/*.py" ]; pythonImportsCheck = [ "md_toc" ]; meta = with lib; { description = "Table of contents generator for Markdown"; homepage = "https://docs.franco.net.eu.org/md-toc/"; license = with licenses; [ gpl3Plus ]; maintainers = with maintainers; [ fab ]; }; }