mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
38 lines
913 B
Nix
38 lines
913 B
Nix
{ lib
|
|
, python3
|
|
, python3Packages
|
|
, fetchFromGitHub
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "arxiv-latex-cleaner";
|
|
version = "1.0.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google-research";
|
|
repo = "arxiv-latex-cleaner";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-CQb1u1j+/px+vNqA3iXZ2oe6/0ZWeMjWrUQL9elRDEI=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|