12 buildPythonPackage rec {
13 pname = "pytest-markdown-docs";
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
21 repo = "pytest-markdown-docs";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-mclN28tfPcoFxswECjbrkeOI51XXSqUXfbvuSHrd7Sw=";
26 build-system = [ poetry-core ];
33 pythonImportsCheck = [ "pytest_markdown_docs" ];
35 nativeCheckInputs = [ pytestCheckHook ];
38 description = "Run pytest on markdown code fence blocks";
39 homepage = "https://github.com/modal-com/pytest-markdown-docs";
40 license = licenses.mit;
41 maintainers = with maintainers; [ GaetanLepage ];