depot/third_party/nixpkgs/pkgs/development/python-modules/latexcodec/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

20 lines
467 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
pname = "latexcodec";
version = "1.0.7";
src = fetchPypi {
inherit pname version;
sha256 = "0wnp3yqcgx0rpy8dz51vh75lbp2qif67da19zi7m3ca98n887hgb";
};
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;
};
}