2018-03-07 19:14:58 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, six }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "latexcodec";
|
2019-05-12 15:58:07 +01:00
|
|
|
version = "1.0.7";
|
2018-03-07 19:14:58 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-12 15:58:07 +01:00
|
|
|
sha256 = "0wnp3yqcgx0rpy8dz51vh75lbp2qif67da19zi7m3ca98n887hgb";
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|