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 4fc528e
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/by-name/pa/pandoc-mustache/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
python3Packages,
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 4fc528e

Please sign in to comment.