7 python3Packages.buildPythonApplication rec {
8 pname = "arxiv-latex-cleaner";
11 src = fetchFromGitHub {
12 owner = "google-research";
13 repo = "arxiv-latex-cleaner";
14 rev = "refs/tags/v${version}";
15 hash = "sha256-CQb1u1j+/px+vNqA3iXZ2oe6/0ZWeMjWrUQL9elRDEI=";
18 propagatedBuildInputs = with python3Packages; [
27 ${python3.interpreter} -m unittest arxiv_latex_cleaner.tests.arxiv_latex_cleaner_test
32 homepage = "https://github.com/google-research/arxiv-latex-cleaner";
33 description = "Easily clean the LaTeX code of your paper to submit to arXiv";
34 mainProgram = "arxiv_latex_cleaner";
35 license = licenses.asl20;
36 maintainers = with maintainers; [ arkivm ];