python312Packages.pandoc-latex-environment: init at 1.1.6.4

This commit is contained in:
Sigmanificient
2024-07-26 13:55:21 +02:00
parent 4e7b26b9d4
commit e73ced37f5
2 changed files with 44 additions and 0 deletions
@@ -0,0 +1,42 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
poetry-dynamic-versioning,
panflute,
pytestCheckHook,
pandoc,
}:
buildPythonPackage rec {
pname = "pandoc-latex-environment";
version = "1.1.6.4";
pyproject = true;
src = fetchFromGitHub {
owner = "chdemko";
repo = "pandoc-latex-environment";
rev = "refs/tags/${version}";
hash = "sha256-DLuLFCKP5ip3duHlGAZnFip7GCDzWK91bka3DrknQSA=";
};
build-system = [
poetry-core
poetry-dynamic-versioning
];
dependencies = [ panflute ];
pythonImportsCheck = [ "pandoc_latex_environment" ];
nativeCheckInputs = [
pytestCheckHook
pandoc
];
meta = {
description = "Pandoc filter for adding LaTeX environment on specific div";
homepage = "https://github.com/chdemko/pandoc-latex-environment";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ sigmanificient ];
};
}
+2
View File
@@ -9606,6 +9606,8 @@ self: super: with self; {
pandoc-attributes = callPackage ../development/python-modules/pandoc-attributes { };
pandoc-latex-environment = callPackage ../development/python-modules/pandoc-latex-environment { };
pandoc-xnos = callPackage ../development/python-modules/pandoc-xnos { };
pandocfilters = callPackage ../development/python-modules/pandocfilters { };