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 14, 2025
1 parent 7f676a8 commit 70cea35
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pkgs/by-name/pa/pandoc-mustache/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
buildPythonApplication,
fetchPypi,
lib,
python3Packages,
}:

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

src = fetchPypi {
inherit pname version;
hash = "sha256-xGjRwhZ2zx+YJARaB4/l1OhFauy/LMosIjMQqoGnxrM=";
};

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

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

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

0 comments on commit 70cea35

Please sign in to comment.