pandoc-include: 1.2.1 -> 1.3.0

This commit is contained in:
DCsunset 2024-02-10 15:17:29 -05:00
parent 193438e924
commit 8ad07fdd3e

View File

@ -3,26 +3,27 @@
, lib
, natsort
, panflute
, lxml
, setuptools
}:
buildPythonApplication rec {
pname = "pandoc-include";
version = "1.2.1";
format = "pyproject";
version = "1.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "DCsunset";
repo = pname;
repo = "pandoc-include";
rev = "refs/tags/v${version}";
sha256 = "sha256-BDMg3zxNoVtO4dI1t4Msi1UwH+D8uZjBIezsER5KWHA=";
hash = "sha256-aqewWSPxl3BpUIise/rPgBQPsyCOxU6gBlzT1u2mHY0=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ natsort panflute ];
propagatedBuildInputs = [ natsort panflute lxml ];
pythonImportsCheck = [ "pandoc_include.main" ];
@ -30,7 +31,7 @@ buildPythonApplication rec {
description = "Pandoc filter to allow file and header includes";
homepage = "https://github.com/DCsunset/pandoc-include";
license = licenses.mit;
maintainers = with maintainers; [ ppenguin ];
maintainers = with maintainers; [ ppenguin DCsunset ];
mainProgram = "pandoc-include";
};
}