2018-03-07 19:14:58 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, six }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "latexcodec";
|
2019-01-28 08:23:04 +00:00
|
|
|
version = "1.0.6";
|
2018-03-07 19:14:58 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-01-28 08:23:04 +00:00
|
|
|
sha256 = "0s4wdbg0w2l8pj3i0y4510i0s04p8nhxcsa2z41bjsv0k66npb81";
|
2018-03-07 19:14:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/mcmtroffaes/latexcodec";
|
|
|
|
description = "Lexer and codec to work with LaTeX code in Python";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|