Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / panflute / default.nix
blob0d145759842e7bbfa412666a3db139ee069164f0
1 { lib
2 , fetchPypi
3 , click
4 , pyyaml
5 , buildPythonPackage
6 , pythonOlder
7 }:
9 buildPythonPackage rec{
10   pname = "panflute";
11   version = "2.3.1";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-XxvQKjTvOYLuAl7FtY+zpu7fwx2ZS4rjnY3JkVotjx8=";
19   };
21   propagatedBuildInputs = [
22     click
23     pyyaml
24   ];
26   pythonImportsCheck = [
27     "panflute"
28   ];
30   meta = with lib; {
31     description = "Pythonic alternative to John MacFarlane's pandocfilters, with extra helper functions";
32     homepage = "http://scorreia.com/software/panflute";
33     changelog = "https://github.com/sergiocorreia/panflute/releases/tag/${version}";
34     license = licenses.bsd3;
35     maintainers = with maintainers; [ synthetica ];
36   };