Skip to content

Commit

Permalink
pandoc-mustache: init at 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronVerDow committed Feb 15, 2025
1 parent 7f676a8 commit 8b4bf65
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions pkgs/by-name/pa/pandoc-mustache/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
python3Packages,
fetchFromGitHub,
nix-update-script,
lib,
}:

python3Packages.buildPythonApplication rec {
pname = "pandoc-mustache";
version = "0.1.0";
pyproject = true;

src = fetchFromGitHub {
owner = "michaelstepner";
repo = "pandoc-mustache";
tag = "${version}";
hash = "sha256-lgbQV4X2N4VuIEtjeSA542yqGdIs5QQ7+bdCoy/aloE=";
};

build-system = with python3Packages; [
setuptools
pyparsing
];

dependencies = with python3Packages; [
panflute
pystache
pyyaml
future
];

passthru.updateScript = nix-update-script { };

meta = {
description = "Pandoc Mustache Filter";
homepage = "https://github.com/michaelstepner/pandoc-mustache";
changelog = "https://github.com/michaelstepner/pandoc-mustache/releases/tag/${version}/CHANGELOG.md";
maintainers = with lib.maintainers; [ averdow ];
license = with lib.licenses; [
cc-by-10
];
};
}

0 comments on commit 8b4bf65

Please sign in to comment.