sternenseemann 2022-11-16 17:30:41 +01:00
parent 14e0c0dba2
commit 10e247864e

View File

@ -1,16 +1,16 @@
{ lib, substituteAll, buildPythonPackage, fetchFromGitHub { lib, substituteAll, buildPythonPackage, fetchFromGitHub
, pandoc, texlive , pandoc, pandocfilters, texlive
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pypandoc"; pname = "pypandoc";
version = "1.8.1"; version = "1.10";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "NicklasTegner"; owner = "JessicaTegner";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-1vQmONQFJrjptwVVjw25Wyt59loatjScsdnSax+q/f8="; hash = "sha256:05m585l4sipjzpkrv4yj5s7w45yxhxlym55lkhnavsshlvisinkz";
}; };
patches = [ patches = [
@ -24,11 +24,12 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
texlive.combined.scheme-small texlive.combined.scheme-small
pandocfilters
]; ];
meta = with lib; { meta = with lib; {
description = "Thin wrapper for pandoc"; description = "Thin wrapper for pandoc";
homepage = "https://github.com/NicklasTegner/pypandoc"; homepage = "https://github.com/JessicaTegner/pypandoc";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ sternenseemann bennofs ]; maintainers = with maintainers; [ sternenseemann bennofs ];
}; };