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

View File

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