nixpkgs/pkgs/development/python-modules/latexcodec/default.nix
R. RyanTM 4def26f290 python37Packages.latexcodec: 1.0.6 -> 1.0.7
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-latexcodec/versions
2019-05-12 20:21:02 +02:00

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