mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
43 lines
857 B
Nix
43 lines
857 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pdfminer-six,
|
|
chardet,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pdfx";
|
|
version = "1.4.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "metachris";
|
|
repo = "pdfx";
|
|
rev = "v${version}";
|
|
hash = "sha256-POpP6XwcqwvImrtIiDjpnHoNE0MKapuPjxojo+ocBK0=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace requirements.txt \
|
|
--replace "chardet==4.0.0" "chardet" \
|
|
--replace "pdfminer.six==20201018" "pdfminer.six"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
pdfminer-six
|
|
chardet
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Extract references (pdf, url, doi, arxiv) and metadata from a PDF";
|
|
mainProgram = "pdfx";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|