linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / pandoc-imagine / default.nix
blob67e27da960fc53ac12b647bbcc2d1ad8f6c17a26
1 { fetchFromGitHub, buildPythonApplication, lib, pandocfilters, six }:
3 buildPythonApplication rec {
4   pname = "pandoc-imagine";
5   version = "0.1.6";
7   src = fetchFromGitHub {
8     repo = "imagine";
9     owner = "hertogp";
10     rev = version;
11     sha256 = "1wpnckc7qyrf6ga5xhr6gv38k1anpy9nx888n7n3rh6nixzcz2dw";
12   };
14   propagatedBuildInputs = [ pandocfilters six ];
16   # No tests in archive
17   doCheck = false;
19   meta = with lib; {
20     homepage = src.meta.homepage;
21     description = ''
22       A pandoc filter that will turn code blocks tagged with certain classes
23       into images or ASCII art
24     '';
25     license = with licenses; [ mit ];
26     maintainers = with maintainers; [ synthetica ];
27   };