Merge pull request #287875 from DCsunset/update-pandoc-include

pandoc-include: 1.2.1 -> 1.3.0

authored by Robert Schütz and committed by GitHub fb299b0b 290f0788

+13 -6
+6
maintainers/maintainer-list.nix
··· 4440 4440 githubId = 14032; 4441 4441 name = "Daniel Brockman"; 4442 4442 }; 4443 + DCsunset = { 4444 + email = "DCsunset@protonmail.com"; 4445 + github = "DCsunset"; 4446 + githubId = 23468812; 4447 + name = "DCsunset"; 4448 + }; 4443 4449 ddelabru = { 4444 4450 email = "ddelabru@redhat.com"; 4445 4451 github = "ddelabru";
+7 -6
pkgs/tools/misc/pandoc-include/default.nix
··· 3 3 , lib 4 4 , natsort 5 5 , panflute 6 + , lxml 6 7 , setuptools 7 8 }: 8 9 9 10 buildPythonApplication rec { 10 11 pname = "pandoc-include"; 11 - version = "1.2.1"; 12 - format = "pyproject"; 12 + version = "1.3.0"; 13 + pyproject = true; 13 14 14 15 src = fetchFromGitHub { 15 16 owner = "DCsunset"; 16 - repo = pname; 17 + repo = "pandoc-include"; 17 18 rev = "refs/tags/v${version}"; 18 - sha256 = "sha256-BDMg3zxNoVtO4dI1t4Msi1UwH+D8uZjBIezsER5KWHA="; 19 + hash = "sha256-aqewWSPxl3BpUIise/rPgBQPsyCOxU6gBlzT1u2mHY0="; 19 20 }; 20 21 21 22 nativeBuildInputs = [ 22 23 setuptools 23 24 ]; 24 25 25 - propagatedBuildInputs = [ natsort panflute ]; 26 + propagatedBuildInputs = [ natsort panflute lxml ]; 26 27 27 28 pythonImportsCheck = [ "pandoc_include.main" ]; 28 29 ··· 30 31 description = "Pandoc filter to allow file and header includes"; 31 32 homepage = "https://github.com/DCsunset/pandoc-include"; 32 33 license = licenses.mit; 33 - maintainers = with maintainers; [ ppenguin ]; 34 + maintainers = with maintainers; [ ppenguin DCsunset ]; 34 35 mainProgram = "pandoc-include"; 35 36 }; 36 37 }