summary refs log tree commit diff
path: root/pkgs/development/python-modules/latexcodec/default.nix
blob: 3b639ee2afb9ed3c8cd3fe6a4f0909d35d6eb3ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, six }:

buildPythonPackage rec {
  pname = "latexcodec";
  version = "1.0.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0zdd1gf24i83ykadx0y30n3001j43scqr2saql3vckk5c39dj1wn";
  };

  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;
  };

}