Loading pkgs/development/python-modules/pytest-markdown-docs/default.nix 0 → 100644 +48 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , pythonOlder , fetchFromGitHub , poetry-core , markdown-it-py , pytest , pytestCheckHook }: buildPythonPackage rec { pname = "pytest-markdown-docs"; version = "0.5.1"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "modal-com"; repo = "pytest-markdown-docs"; rev = "refs/tags/v${version}"; hash = "sha256-mclN28tfPcoFxswECjbrkeOI51XXSqUXfbvuSHrd7Sw="; }; build-system = [ poetry-core ]; dependencies = [ markdown-it-py pytest ]; pythonImportsCheck = [ "pytest_markdown_docs" ]; nativeCheckInputs = [ pytestCheckHook ]; meta = with lib; { description = "Run pytest on markdown code fence blocks"; homepage = "https://github.com/modal-com/pytest-markdown-docs"; license = licenses.mit; maintainers = with maintainers; [ GaetanLepage ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -12120,6 +12120,8 @@ self: super: with self; { pytest-logdog = callPackage ../development/python-modules/pytest-logdog { }; pytest-markdown-docs = callPackage ../development/python-modules/pytest-markdown-docs { }; pytest-md-report = callPackage ../development/python-modules/pytest-md-report { }; pytest-metadata = callPackage ../development/python-modules/pytest-metadata { }; Loading Loading
pkgs/development/python-modules/pytest-markdown-docs/default.nix 0 → 100644 +48 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , pythonOlder , fetchFromGitHub , poetry-core , markdown-it-py , pytest , pytestCheckHook }: buildPythonPackage rec { pname = "pytest-markdown-docs"; version = "0.5.1"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "modal-com"; repo = "pytest-markdown-docs"; rev = "refs/tags/v${version}"; hash = "sha256-mclN28tfPcoFxswECjbrkeOI51XXSqUXfbvuSHrd7Sw="; }; build-system = [ poetry-core ]; dependencies = [ markdown-it-py pytest ]; pythonImportsCheck = [ "pytest_markdown_docs" ]; nativeCheckInputs = [ pytestCheckHook ]; meta = with lib; { description = "Run pytest on markdown code fence blocks"; homepage = "https://github.com/modal-com/pytest-markdown-docs"; license = licenses.mit; maintainers = with maintainers; [ GaetanLepage ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -12120,6 +12120,8 @@ self: super: with self; { pytest-logdog = callPackage ../development/python-modules/pytest-logdog { }; pytest-markdown-docs = callPackage ../development/python-modules/pytest-markdown-docs { }; pytest-md-report = callPackage ../development/python-modules/pytest-md-report { }; pytest-metadata = callPackage ../development/python-modules/pytest-metadata { }; Loading