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