pandoc-imagine: init at unstable-2018-11-19 (#59816)

pandoc-imagine: init at unstable-2018-11-19
This commit is contained in:
Silvan Mosberger 2019-04-26 12:02:08 +02:00 committed by GitHub
commit b0c46a21e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ fetchFromGitHub, buildPythonApplication, lib, pandocfilters, six }:
buildPythonApplication rec {
pname = "pandoc-imagine";
version = "unstable-2018-11-19";
src = fetchFromGitHub {
repo = "imagine";
owner = "hertogp";
rev = "cc9be85155666c2d12d47a71690ba618cea1fac2";
sha256 = "0iksh9081g488yfjzd24bz4lm1nrrjamph1vynx3imrcfgyq7nsb";
};
propagatedBuildInputs = [ pandocfilters six ];
# No tests in archive
doCheck = false;
meta = with lib; {
homepage = src.meta.homepage;
description = ''
A pandoc filter that will turn code blocks tagged with certain classes
into images or ASCII art
'';
license = with licenses; [ mit ];
maintainers = with maintainers; [ synthetica ];
};
}

View File

@ -4661,6 +4661,8 @@ in
pa_applet = callPackage ../tools/audio/pa-applet { };
pandoc-imagine = python3Packages.callPackage ../tools/misc/pandoc-imagine { };
pasystray = callPackage ../tools/audio/pasystray { };
phash = callPackage ../development/libraries/phash { };