blob: 8a9bc8d131c80d72982ddc1fc39cb88c5d8897aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
fetchPypi,
click,
pyyaml,
buildPythonPackage,
}:
buildPythonPackage rec {
pname = "panflute";
version = "2.3.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-XxvQKjTvOYLuAl7FtY+zpu7fwx2ZS4rjnY3JkVotjx8=";
};
propagatedBuildInputs = [
click
pyyaml
];
pythonImportsCheck = [ "panflute" ];
meta = {
description = "Pythonic alternative to John MacFarlane's pandocfilters, with extra helper functions";
homepage = "https://scorreia.com/software/panflute";
changelog = "https://github.com/sergiocorreia/panflute/releases/tag/${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ synthetica ];
};
}
|