Merge pull request #269394 from r-ryantm/auto-update/python311Packages.mdformat-mkdocs

python311Packages.mdformat-mkdocs: 1.0.6 -> 1.1.0

authored by

Fabian Affolter and committed by
GitHub
6e31010b 0b59886c

+11 -6
+11 -6
pkgs/development/python-modules/mdformat-mkdocs/default.nix
··· 6 6 , mdformat-gfm 7 7 , mdit-py-plugins 8 8 , pythonOlder 9 + , pytestCheckHook 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "mdformat-mkdocs"; 13 - version = "1.0.6"; 14 - format = "pyproject"; 14 + version = "1.1.0"; 15 + pyproject = true; 15 16 16 - disabled = pythonOlder "3.7"; 17 + disabled = pythonOlder "3.8"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "KyleKing"; 20 - repo = pname; 21 + repo = "mdformat-mkdocs"; 21 22 rev = "refs/tags/v${version}"; 22 - hash = "sha256-l4B/DR0pKZG62+sBG+fiux/XeF3ewxb2TYa+Zs1O3kU="; 23 + hash = "sha256-5MCsXCkYnoLEZZoj9WrO/Z3VzTKagoOrMCuTpA4dGAQ="; 23 24 }; 24 25 25 26 nativeBuildInputs = [ ··· 32 33 mdit-py-plugins 33 34 ]; 34 35 36 + nativeCheckInputs = [ 37 + pytestCheckHook 38 + ]; 39 + 35 40 pythonImportsCheck = [ 36 41 "mdformat_mkdocs" 37 42 ]; ··· 39 44 meta = with lib; { 40 45 description = "mdformat plugin for MkDocs"; 41 46 homepage = "https://github.com/KyleKing/mdformat-mkdocs"; 42 - changelog = "https://github.com/KyleKing/mdformat-mkdocs/releases/tag/v${version}"; 47 + changelog = "https://github.com/KyleKing/mdformat-mkdocs/releases/tag/v${version}"; 43 48 license = licenses.mit; 44 49 maintainers = with maintainers; [ aldoborrero ]; 45 50 };