-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f676a8
commit 70cea35
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
]; | ||
}; | ||
} |