mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
21 lines
467 B
Nix
21 lines
467 B
Nix
{ 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;
|
|
};
|
|
|
|
}
|