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