From 689559952c8fc7c4091d7239a25f1cec428aebac Mon Sep 17 00:00:00 2001 From: Adam Massmann Date: Sat, 31 Mar 2018 12:55:42 -0400 Subject: [PATCH 1/3] gnu: Add python-latexcodec --- gnu/packages/python.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 9e038ef4f..f505f15b2 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -13082,3 +13082,22 @@ file system events on Linux.") (base32 "0svc9nla3b9145d6b7fb9dizx412l3difzqw0ilh9lz52nsixw8j")) (file-name (string-append name "-" version ".tar.gz")))))) + +(define-public python-latexcodec + (package + (name "python-latexcodec") + (version "1.0.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "latexcodec" version)) + (sha256 + (base32 + "0zdd1gf24i83ykadx0y30n3001j43scqr2saql3vckk5c39dj1wn")))) + (build-system python-build-system) + (inputs + `(("python-six" ,python-six))) + (home-page "https://readthedocs.org/projects/latexcodec/") + (synopsis "Lexer and codec to work with LaTeX code in Python") + (description "Lexer and codec to work with LaTeX code in Python.") + (license license:expat))) -- 2.11.0