python3Packages.pylatexenc: 2.7 -> 2.8

This commit is contained in:
Drew Risinger 2020-11-04 12:28:56 -05:00 committed by Jonathan Ringer
parent e60417ade9
commit 901872da17

View File

@ -6,23 +6,23 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pylatexenc"; pname = "pylatexenc";
version = "2.7"; version = "2.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "phfaist"; owner = "phfaist";
repo = "pylatexenc"; repo = "pylatexenc";
rev = "v${version}"; rev = "v${version}";
sha256 = "1hpcwbknfah3mky2m4asw15b9qdvv4k5ni0js764n1jpi83m1zgk"; sha256 = "0m9vrbh1gmbgq6dqm7xzklar3accadw0pn896rqsdi5jbgd3w0mh";
}; };
pythonImportsCheck = [ "pylatexenc" ]; pythonImportsCheck = [ "pylatexenc" ];
dontUseSetuptoolsCheck = true;
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
meta = with lib; { meta = with lib; {
description = "Simple LaTeX parser providing latex-to-unicode and unicode-to-latex conversion"; description = "Simple LaTeX parser providing latex-to-unicode and unicode-to-latex conversion";
homepage = "https://pylatexenc.readthedocs.io"; homepage = "https://pylatexenc.readthedocs.io";
downloadPage = "https://www.github.com/phfaist/pylatexenc/releases"; downloadPage = "https://www.github.com/phfaist/pylatexenc/releases";
changelog = "https://pylatexenc.readthedocs.io/en/latest/changes/";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ drewrisinger ]; maintainers = with maintainers; [ drewrisinger ];
}; };