bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
37 lines
913 B
Nix
37 lines
913 B
Nix
{ lib
|
|
, python3
|
|
, python3Packages
|
|
, fetchFromGitHub
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "arxiv-latex-cleaner";
|
|
version = "1.0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google-research";
|
|
repo = "arxiv-latex-cleaner";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-S/r5riFIsRG+5za+4kVvUXOLIJ3ELCDWlSpYeSuNs+s=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pillow
|
|
pyyaml
|
|
regex
|
|
absl-py
|
|
];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
${python3.interpreter} -m unittest arxiv_latex_cleaner.tests.arxiv_latex_cleaner_test
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/google-research/arxiv-latex-cleaner";
|
|
description = "Easily clean the LaTeX code of your paper to submit to arXiv";
|
|
mainProgram = "arxiv_latex_cleaner";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ arkivm ];
|
|
};
|
|
}
|