3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.pypandoc: 1.7.0 -> 1.7.2

This commit is contained in:
sternenseemann 2021-12-21 12:58:21 +01:00 committed by sterni
parent faa2652e68
commit f427295e61

View file

@ -1,16 +1,14 @@
{ lib, substituteAll, buildPythonPackage, fetchFromGitHub
{ lib, substituteAll, buildPythonPackage, fetchPypi
, pandoc, texlive
}:
buildPythonPackage rec {
pname = "pypandoc";
version = "1.7.0";
version = "1.7.2";
src = fetchFromGitHub {
owner = "NicklasTegner";
repo = pname;
rev = "v${version}";
sha256 = "00r88qcvc9jpi8jvd6rpizz9gm33aq8hc3mf8lrarrjiq2fsxmk9";
src = fetchPypi {
inherit pname version;
sha256 = "1wk8jxnysb7sa55zhxx5brylv00ivamqbk1b4lbzi58ziij08p03";
};
patches = [