pythonPackages.latexcodec: init at 1.0.5
This commit is contained in:
parent
48608f3e16
commit
0450c596f0
20
pkgs/development/python-modules/latexcodec/default.nix
Normal file
20
pkgs/development/python-modules/latexcodec/default.nix
Normal file
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -5297,6 +5297,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
latexcodec = callPackage ../development/python-modules/latexcodec {};
|
||||||
|
|
||||||
libsexy = callPackage ../development/python-modules/libsexy {
|
libsexy = callPackage ../development/python-modules/libsexy {
|
||||||
libsexy = pkgs.libsexy;
|
libsexy = pkgs.libsexy;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user