depot/third_party/nixpkgs/pkgs/by-name/ar/arxiv-latex-cleaner/package.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

37 lines
913 B
Nix

{ lib
, python3
, python3Packages
, fetchFromGitHub
}:
python3Packages.buildPythonApplication rec {
pname = "arxiv-latex-cleaner";
version = "1.0.5";
src = fetchFromGitHub {
owner = "google-research";
repo = "arxiv-latex-cleaner";
rev = "refs/tags/v${version}";
hash = "sha256-Yxp8XtlISVZfEjCEJ/EXsIGMCHDPOwPcjkJxECeXvYk=";
};
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 ];
};
}