1{ stdenv, buildPythonPackage, fetchPypi, six }:
2
3buildPythonPackage rec {
4 pname = "latexcodec";
5 version = "1.0.6";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0s4wdbg0w2l8pj3i0y4510i0s04p8nhxcsa2z41bjsv0k66npb81";
10 };
11
12 propagatedBuildInputs = [ six ];
13
14 meta = {
15 homepage = "https://github.com/mcmtroffaes/latexcodec";
16 description = "Lexer and codec to work with LaTeX code in Python";
17 license = stdenv.lib.licenses.mit;
18 };
19
20}