pythonPackages.pypandoc: mark as broken

Pypandoc is incompatible with pandoc v2 and there seems to be no upstream effort to port it to the new version.
This commit is contained in:
Robert Schütz 2018-02-19 23:05:47 +01:00
parent f0d2baad08
commit 41a2352a2f
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,6 @@
buildPythonPackage rec {
pname = "pypandoc";
version = "1.4";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
@ -28,5 +27,7 @@ buildPythonPackage rec {
homepage = https://github.com/bebraw/pypandoc;
license = licenses.mit;
maintainers = with maintainers; [ bennofs ];
broken = true; # incompatible with pandoc v2
};
}