pythonPackages.pypandoc: fix tests for pandoc >= 2.11.2

A change in the Markdown output of pandoc breaks the unicode input test
of pypandoc.

See also https://github.com/bebraw/pypandoc/pull/204
This commit is contained in:
sternenseemann 2020-11-22 19:16:29 +01:00 committed by Jonathan Ringer
parent 1880892b7b
commit c0fa30bbcf

View file

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchFromGitHub
{ stdenv, buildPythonPackage, fetchFromGitHub, fetchpatch
, pandoc, haskellPackages, texlive }:
buildPythonPackage rec {
@ -12,6 +12,14 @@ buildPythonPackage rec {
sha256 = "1lpslfns6zxx7b0xr13bzg921lwrj5am8za0b2dviywk6iiib0ld";
};
# https://github.com/bebraw/pypandoc/pull/204
patches = [
(fetchpatch {
url = "https://github.com/sternenseemann/pypandoc/commit/e422e277dd667c77dae11fad931dbb6015e9a784.patch";
sha256 = "11l11kh2a4k0h1g4yvijb60076kzxlkrvda3x6dc1s8fz352bpg3";
})
];
postPatch = ''
# set pandoc path statically
sed -i '/^__pandoc_path = None$/c__pandoc_path = "${pandoc}/bin/pandoc"' pypandoc/__init__.py